I have python script that compares existing file names in a folder to a reference table and then determines if it needs to be renamed or not.
As it loops through each fi
Create a Python file in your desired directory and write something like that :
import os for filename in os.listdir("."): if(filename ...): newFilename = ... os.rename(filename, newFilename)