3

I tried the cmd to change all my pictures but it didn't work because the naming of the pictures is difficult for the computer to rename it by the cmd trick.

This is my corrupted pictures naming:

my folder pictures

Is there a solution for this ? as naming each one would be a lot of work, because there are hundreds of pictures in the folders.

=============================================================================== Edit: adding a picture.

Here's another picture that explains how difficult it's to rename the file with simple methods; like, the cmd renaming command.

new_picture

  1. the space, tricks the command launched at cmd window to know about it, so it won't work.

  2. the extension name is the biggest problem because it's different in each picture file, so it even more difficult to know the algorithm that fit this kind of naming.

I'm mean if anyone can tell what kind of algorithm I can use to follow the different file extension renaming pattern.

R1S8K
  • 153

2 Answers2

2

You may just select all files in the folder, then click Rename (from the right-click menu or on the top) and add a file name like pers_pic.jpg; this way the files will have names like pers_pic (1).jpg, pers_pic (2).jpg etc.


Alternatively, you may use cmd in the following way:

ren personal* personal*.jpg

This will add a .jpg extension to all files.

Source: HTG

1

With Total Commander (it is shareware, downloadable at https://www.ghisler.com/), you have a quite comprehensive Multi Rename Tool, where you can change the file name, extension, using regular expressions and many other items. See the screenshot of the dialog below.

enter image description here

Michel Keijzers
  • 467
  • 2
  • 9
  • 23