While working on a Windows machine, I needed a way to append to filenames for multiple files.
This is what worked for me:
- Open the File Explorer and navigate to the folder where the files to be renamed are.
- Hold the Shift key and right-click the explorer, then select "Open command window here".
-
In the command window, type the following script (where SUFFIX is to be replaced with the desired suffix):
for %a in (*.png) do ren "%~a" "%~naSUFFIX%~xa"
- Hit Enter, and enjoy.