bfiles (big files) is a very fast directory size analyzer written in Rust.
Provide a path to find which folders eating up the most space.
Uses concurrent traversal (crossbeam or rayon) to scan directories quickly.
bfiles --path <PATH> [OPTIONS]
--path <PATH>— Path to analyze (required)--engine <ENGINE>—rayonorcrossbeam(default: crossbeam)--max_depth <N>— Limit traversal depth (default: unlimited)--top <N>— Show top N largest directories (default: 10)-h, --help— Show help
bfiles --path .
bfiles --path /Users --max_depth 2 --top 20
bfiles --path . --engine rayon
cargo build --release
The binary ends up in target/release/bfiles.
MIT