A simple C++ CLI tool that scans projects for common development junk folders and helps clean them up.
- Scan project directories
- Detect common junk folders
- Calculate recoverable storage size
- Sort results by size
- Remove detected junk folders
- build
- cmake-build-debug
- cmake-build-release
- pycache
- node_modules
- dist
- .next
- out
- bin
- obj
g++ src/main.cpp src/cli/CommandParser.cpp src/scanner/Scanner.cpp -o RubyClean.exeRubyClean.exe scan .RubyClean.exe clean .=====================================
RubyClean Report
=====================================
Path Size
----------------------------------------------------------
.\test\cmake-build-debug 3.13 KB
----------------------------------------------------------
Total Recoverable: 3.13 KB
Delete all junk folders? (y/n): y
Cleanup completed.
- Detect log files
- Detect temporary files
- Export scan reports
- Ignore file support
- Largest folder analysis
Built while learning C++ and CLI application development.