file name utility

  • Thread starter Thread starter georgepds
  • Start date Start date
G

georgepds

Hi

I need a utility that will search all subdirectories and change

*.mp2 >>>>into>>> *.mp3


What I want it to do is change the file type into mp3 for all files in
the subdirectories
 
Hi
For a single directory, use: ren *.mp2 *.mp3

For all subdirectories, a dos utility called sweep probably
will do it. It will execute almost any dos command in
an entire tree (if you start in the root dir., it will cover
the entire logical drive).

It was written by Charles Petzold.

Jack
 
J. Yazel said:
For a single directory, use: ren *.mp2 *.mp3

For all subdirectories, a dos utility called sweep probably
will do it. It will execute almost any dos command in
an entire tree (if you start in the root dir., it will cover
the entire logical drive).

It was written by Charles Petzold.

Great little utility - saves lots of bigtime batch file headaches.

Sweep DOS, 1.1 kB FREE
Sweep is a DOS command line utility that will perform any DOS command
both within the current directory and all subdirectories of that
directory.

http://www.tamrof.org/archive/sweep.zip
 
Back
Top