Search found 7 matches

by mydxbtester
13 Apr 2015 23:25
Forum: DOS Batch Forum
Topic: Batch Script Addon Feature
Replies: 6
Views: 4136

Re: Batch Script Addon Feature

Thanks a ton, Aacini. The caret did the job: Can I make a last request before I mark this thread as closed, there's this certain phone numbers XXXXXXXXXXXX and YYYYYYYYYYYY that whenever it calls to certain IP extensions - the script should still convert it to mp3 and not copy to those IP-Extension ...
by mydxbtester
12 Apr 2015 23:35
Forum: DOS Batch Forum
Topic: Batch Script Addon Feature
Replies: 6
Views: 4136

Re: Batch Script Addon Feature

Hi Aacini, I tried integrating your code for testing to mine but it does not work. With your code on it, it still functions the old way in which it creates the old folder path, without the Extension. setlocal enabledelayedexpansion set extensions=/10000/10010/10020/10030/10040/10050/10060/ for %%a i...
by mydxbtester
12 Apr 2015 06:55
Forum: DOS Batch Forum
Topic: Batch Script Addon Feature
Replies: 6
Views: 4136

Re: Batch Script Addon Feature

@ShadowThief: Yes, the strings to search (Extension) are in random location within the filename, as shown from the sample filenames. But they can be identified by the (_) underscore character before the Extension number, in between the Extension number, or after the Extension number. @aacini: If pos...
by mydxbtester
12 Apr 2015 04:44
Forum: DOS Batch Forum
Topic: Batch Script Addon Feature
Replies: 6
Views: 4136

Batch Script Addon Feature

Currently, I have this script up and running: @echo off for %%a in ("%FolderIncoming%\%FileMask%") do ( set FileName=%%~na set TargetYear=!FileName:~0,4! set TargetFolder=!TargetYear!\!FileName:~0,10! if not exist "%FolderSorted%\!TargetFolder!\%%~na.mp3" ( echo Processing '!File...
by mydxbtester
23 Feb 2015 23:14
Forum: DOS Batch Forum
Topic: Batch Script Improvement
Replies: 4
Views: 3018

Re: Batch Script Improvement

Perfect!!! Thank you.
by mydxbtester
23 Feb 2015 07:36
Forum: DOS Batch Forum
Topic: Batch Script Improvement
Replies: 4
Views: 3018

Re: Batch Script Improvement

If it's not too much to ask, can you show me how to do that as I'm not sure as to where to put that conditional statement.
by mydxbtester
23 Feb 2015 07:26
Forum: DOS Batch Forum
Topic: Batch Script Improvement
Replies: 4
Views: 3018

Batch Script Improvement

Daily, we generate around 1500+ to 2000+ call recordings and it's a very tedious to have those files converted to mp3 and stored to it's corresponding dated folder. The batch script below does the job but is there a way to refine/improve it? I mean it shouldn't copy (lame'd) and should skip all thos...