Skip to content

scryptiam/Remnizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

4 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Remnizer - Simple File Organizer 🧹

A simple Python script to automatically organize files in any directory into clean, categorized folders.

✨ Features

  • Automatic: Scans the folder it's in and sorts everything automatically.
  • Customizable: Easily add new file types and categories by editing the script.
  • Safe: Prevents data loss by renaming files if a file with the same name already exists in the destination. Includes a confirmation prompt before running.
  • Cross-Platform: Works seamlessly on Windows, macOS, and Linux.
  • Report Generation: Creates a detailed organization_report.txt file summarizing all actions taken.

πŸš€ How to Use

  1. Download: Download the remnizer.py script.
  2. Place: Move the remnizer.py file into the folder you want to organize (e.g., your Downloads folder).
  3. Run: Open a terminal or command prompt, navigate to that folder, and run the script with Python:
    python remnizer.py
    The script will ask for confirmation before moving any files.

That's it! Your files will be moved into folders like Photos, Videos, Documents, etc.

πŸ”§ Customization

You can easily customize the file categories. Open remnizer.py and edit the EXTENSIONS dictionary at the top of the file:

# Easily add or remove extensions for each category.
EXTENSIONS = {
    'Photos': {'.jpg', '.jpeg', '.png', ...},
    'Videos': {'.mp4', '.avi', ...},
    # Add a new category like this:
    'Ebooks': {'.epub', '.mobi', '.azw3'}
}

πŸ“„ License

This project is licensed under the MIT License.

About

Remnizer - Personal File Organizer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages