A simple PYPI package for bulk renaming files inside a folder.
Command: pip install Bulkren
- Open Terminal.
- Install Bulkren using the above command.
- Run
python -m Bulkren -h
for help.
The package can be used as follows:
python -m Bulkren -i <input_folder_path> -o <output_folder_path> -p <patter_to_rename>
python -m Bulkren -i C:\User\Akash\Desktop\input_folder -o C:\User\Akash\Desktop\output_folder -p images_XYZ
This above example will take all the files in C:\User\Akash\Desktop\input_folder
and then rename it with pattern images_XYZ
where XYZ would be replaced number count of file (remember to add XYZ in end only) and will save it to the C:\User\Akash\Desktop\output_folder
folder.
Note : If the -o argument is not passed then it will automatically create a output
named folder in same parent directory, for above example the output folder path would be C:\User\Akash\Desktop\output
-i or --input
takes input folder path-o or --output
takes output folder path-p or --pattern
takes pattern for renaming files.
where
-i
is required
parameter
-o
is optional
parameter
-p
is required
parameter