A professional-grade CLI tool for organizing and managing files across multiple drives and volumes.
Licensed under the MIT License
Master Folder Manager (MFM) is a powerful command-line interface tool designed to streamline file organization and management across multiple drives. It provides intelligent categorization, efficient file operations, and comprehensive drive management capabilities.
- Python 3.9 or higher
- Pydantic v2.0.0 or higher
- Click 8.0.0 or higher
- Rich 13.0.0 or higher
- Additional dependencies listed in requirements.txt
- Smart file categorization and organization
- Multi-volume support and management
- Bulk file operations with progress tracking
- Storage analysis and reporting
- Directory tree visualization
- Advanced search capabilities
- Secure file operations
- Drive space monitoring
pip install master-folder-manager# Clone the repository
git clone https://github.com/MontyCraig/Master-Folder-Manager.git
cd Master-Folder-Manager
# Create virtual environment
python -m venv venv
source venv/bin/activate # or venv\Scripts\activate on Windows
# Install dependencies
pip install -r requirements.txt
# Install package in development mode
pip install -e .# Start the interactive interface
python -m src.main
# Or, after installing in development mode:
mfmThe interactive menu provides options for:
- Listing directory contents
- Analyzing directories (size, extensions, categories)
- Creating and managing master folders
- Organizing files by category (move or copy)
- Browsing volumes
- Viewing directory trees
master-folder-manager/
├── src/ # Source code
│ ├── core/ # Core functionality
│ │ ├── file_ops.py # File operations
│ │ ├── dir_ops.py # Directory operations
│ │ ├── models.py # Pydantic data models
│ │ └── drive_ops.py # Drive management
│ └── config/ # Configuration
│ └── settings.py # Settings management
├── tests/ # Test suite
└── docs/ # Documentation
Configuration is stored in ~/.efm_config.json and includes:
- Master folder root location
- Quick access volumes
- File categories with extensions and priorities
- Recent paths
- Excluded patterns (e.g.,
.git,__pycache__,node_modules)
# Clone the repository
git clone https://github.com/MontyCraig/Master-Folder-Manager.git
cd Master-Folder-Manager
# Create virtual environment
python -m venv venv
source venv/bin/activate # or venv\Scripts\activate on Windows
# Install with development dependencies
pip install -e ".[dev]"
# Install pre-commit hooks
pre-commit install
# Verify setup
python -m pytest# Run all tests with coverage
python -m pytest --cov=src --cov-report=term-missing
# Run specific test file
python -m pytest tests/core/test_models.py -v
# Run linting and type checks
ruff check src/ tests/
mypy src/- Interactive file and directory navigation
- Multi-volume support and management
- Smart file categorization
- Bulk file organization
- Storage analysis and reporting
- Master folder management
- Pydantic v2 compatibility
- Git repository detection
- Duplicate file detection
- File comparison tools
- Advanced search capabilities
- Custom categorization rules
- Batch processing operations
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
MIT License. Copyright 2024-2026 Monty Craig. See LICENSE for details.