A python script to organize files in subfolders according to their extensions.
pip install -r requirements.txt
python -m filesorganizer PATH_TO_SOURCE_FOLDER
If your folder has spaces, you will need to use " ":
python -m filesorganizer "PATH_TO_SOURCE_FOLDER"
- Define destination folder (default is the same as the source folder):
python -m filesorganizer PATH_TO_SOURCE_FOLDER --dest=PATH_TO_DESTINATION_FOLDER
- Copy the files (default is to move):
python -m filesorganizer PATH_TO_SOURCE_FOLDER --copy
python -m filesorganizer --help