This application organizes files into different folders based on the file types. It provides a user-friendly interface where you can select a folder path and clean up the folder by sorting files into appropriate subfolders.
- Organizes files into different folders (e.g., documents, images, videos) based on file types.
- Simple and intuitive UI.
- Easy to select a folder path and clean it with just one click.
-
Create a virtual environment:
python -m venv .venv
-
Activate the virtual environment:
- For macOS/Linux:
source .venv/bin/activate - For Windows:
.venv\Scripts\activate
- For macOS/Linux:
-
Install the required dependencies:
pip install -r requirements.txt
python-magicuses the nativelibmagiclibrary when available. Iflibmagicis not installed on your system, the app now falls back to extension-based type detection instead of crashing. -
Run the application:
python main.py
Once the application starts, a user interface will be displayed. Use the "Browse" button to select the folder path you want to clean. After selecting the folder, click the "Clean" button to organize the files in the selected folder.
