News

File Renamer is a Python script that renames all files in a specified folder by converting names to lowercase, removing Vietnamese accents, eliminating punctuation, and replacing spaces with hyphens.
''' This will batch rename a group of files in a given directory, once you pass the current and new extensions ''' # files = os.listdir (work_dir) for filename in os.listdir (work_dir): # Get the file ...