Simple C++ program with ImGui-based interface, that shows you proportions of files in a specified directory. Nothing excess. Infinity search. Filesystem events reaction. Enjoy.
- Simple and responsive UI.
- Multithreaded search. Uses
std::thread::hardware_concurrency()
to determine number of threads. - Real-time filesystem events handling.
- For devs: Hot reload based on
cr.h
.
- Windows 7 or higher is required (Windows 10 is recommended)
- Download prebuilt version.
- Extract an archive and run
tiny-drive-prof.exe
.
Before your start make sure that your system meets the conditions:
- Windows 7 or higher (Windows 10 is recommended)
- Visual Studio 2019
- CMake 3.19.1-3.20 (3.21 wouldn't work)
- Clone the repo, including submodules
git clone https://github.com/Pospelove/tiny-drive-prof.git cd tiny-drive-prof git submodule init git submodule update
- Make a build directory (used for project files, cache, artifacts, etc)
mkdir build
- Generate project files with CMake. Dependencies would be installed automatically
cd build cmake ..
- Open
build/tiny-drive-prof.sln
with Visual Studio, thenBuild -> Build Solution
.