filecaddy is a lightweight Python utility that organizes and audits files in a folder.
- Sort files into type-based subfolders
- Detect duplicate files by hash
- Generate a summary report of folder contents
pip install filecaddyOrganize a folder by file type:
filecaddy organize /path/to/folderDetect duplicates and print a report:
filecaddy duplicates /path/to/folderGenerate a summary report:
filecaddy report /path/to/folder- Organized files are moved into subfolders by extension
- Duplicate detection groups files with identical hashes
- Reports include totals and per-type counts
Install dependencies and run locally:
pip install -r requirements.txt
python filecaddy.py --help