D DrZin Apr 3, 2004 #1 How does one go about renaming multiple files and including the suffix to denote the file type (.mp3, .wmv, .jpg, etc.)?
How does one go about renaming multiple files and including the suffix to denote the file type (.mp3, .wmv, .jpg, etc.)?
D David Candy Apr 3, 2004 #2 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
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