-1

Is it possible to write a .bat-file that changes the names of all the files in a folder?
For example: if I have a bunch of jpegs in a folder that have random names:

File1.jpg
ScreendumpA2.jpg
Test13.jpg

And I would like to change them to something like this:

Picture001.jpg
Picture002.jpg
Picture003.jpg

Any help would be greatly appreciated.

Kunal
  • 1,899

1 Answers1

0

If you're in Windows, you can do this without a batch file. Select all of the files, press F2 to rename the first one and it will automatically rename the others.

Using your example: Select All -> F2 -> type 'Picture' -> Enter would give you Picture (1).jpg, Picture (2).jpg, Picture (3).jpg...etc.

kazoni
  • 713