2 releases
0.1.1 | Dec 7, 2024 |
---|---|
0.1.0 | Nov 25, 2024 |
#461 in Filesystem
329 downloads per month
9KB
109 lines
dir-size
dir-size
is a crate that calculates directory size in parallel using rayon
.
Usage
This is a little code sample:
use dir_size::{get_size_in_bytes, get_size_in_human_bytes, get_size_in_abbr_human_bytes};
use std::{io, path::Path};
fn main() -> io::Result<()> {
let path = Path::new("/home");
println!("{} Bytes", get_size_in_bytes(path)?);
println!("{}", get_size_in_human_bytes(path)?);
println!("{}", get_size_in_abbr_human_bytes(path)?);
Ok(())
}
Dependencies
~1.5MB
~25K SLoC