change the file extension on multiple files at once?

  • Thread starter Thread starter notty gell
  • Start date Start date
N

notty gell

The spectacular XP autochk "feature" has again renamed 600 files with
the chk extension. Any idea how to change them all back to wav files
in one swift, elegant motion without doing it 600 times? tia.
 
The DOS "rename" ("REN") command can do that.

From a DOS prompt:

C:\DOS>REN *.CHK *.MP3

[this does assume that they are all in one folder]
 
If not use the For command.

--
----------------------------------------------------------
http://www.g2mil.com/Dec2003.htm
Barry Watzman said:
The DOS "rename" ("REN") command can do that.

From a DOS prompt:

C:\DOS>REN *.CHK *.MP3

[this does assume that they are all in one folder]


notty said:
The spectacular XP autochk "feature" has again renamed 600 files with
the chk extension. Any idea how to change them all back to wav files
in one swift, elegant motion without doing it 600 times? tia.
 
If chkdsk has renamed the file it may be just a fragment and
not a usable file.


| The DOS "rename" ("REN") command can do that.
|
| From a DOS prompt:
|
| C:\DOS>REN *.CHK *.MP3
|
| [this does assume that they are all in one folder]
|
|
| notty gell wrote:
|
| > The spectacular XP autochk "feature" has again renamed
600 files with
| > the chk extension. Any idea how to change them all back
to wav files
| > in one swift, elegant motion without doing it 600 times?
tia.
|
 
Select multiple files, right click the first file, rename

or

Type

ren *.chk *.doc

or

For %A in (*.chk) ren %A *.doc
For /r %A in (*.chk) ren %A *.doc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top