A program that renames all files of a folder.
$ python3 renamer.py [path_to_folder] -n[naming_convention]
$ python3 renamer.py -h
usage: renamer.py [-h] [-n] path
Renames every file inside the given folder.
positional arguments:
path Absolute path of the
folder
optional arguments:
-h, --help show this help
message and exit
-n , --naming_convention
Not specifing will
default to the name
(file)
$ python3 renamer.py ./test_folder -n test
File Renaming Completed!
pip/pip3 installl argparse