Renaming multiple files to include file type extension

  • Thread starter Thread starter DrZin
  • Start date Start date
D

DrZin

How does one go about renaming multiple files and
including the suffix to denote the file type
(.mp3, .wmv, .jpg, etc.)?
 
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