Search found 4 matches

by ferris881
27 Apr 2012 13:25
Forum: DOS Batch Forum
Topic: Normalizing Folder / Directory Names
Replies: 8
Views: 6887

Re: Normalizing Folder / Directory Names

Sorry hit enter before I could say thanks for that code.. It would have taken me many hours of searching on Google before I even got close to that.

:D :D :D
by ferris881
27 Apr 2012 13:24
Forum: DOS Batch Forum
Topic: Normalizing Folder / Directory Names
Replies: 8
Views: 6887

Re: Normalizing Folder / Directory Names

I had to edit your script just a little, for some reason my computer didn't like

Code: Select all

dir /a-d /b


so I had to use

Code: Select all

dir /-a /d /b


and I'm getting Directories and files when it searches.. I'm fining that is very annoying.
by ferris881
26 Apr 2012 23:50
Forum: DOS Batch Forum
Topic: Normalizing Folder / Directory Names
Replies: 8
Views: 6887

Re: Normalizing Folder / Directory Names

Yes, we are talking just folders. If my program can predict the folder name, then the rest of the program can find the files and process them. Here is the list of file folder names for Dick Clark. ⋅ Dick Clark Cal6 (7) 05.05.12 1 ⋅ Dick Clark Cal3 (7) 04.25.12 ⋅ Dick Cl...
by ferris881
26 Apr 2012 16:06
Forum: DOS Batch Forum
Topic: Normalizing Folder / Directory Names
Replies: 8
Views: 6887

Normalizing Folder / Directory Names

I have an auto downloader that will drop audio files I need into a folder it creates. My problem with that is the names will vary day to day and week to week. Here is an example //Path_to_Folder/Program Name2 (2) DD.MM.YY 22 - OR - //Path_to_Folder/REVISED Program Name2 (2) DD.MM.YY 22 Some things I...