It's fast on my machine.
CLI Usage:
``` yadf 0.1.0 Yet Another Dupes Finder
USAGE: yadf [FLAGS] [OPTIONS] [path]
FLAGS: -h, --help Prints help information -n, --no-empty exclude empty files -r, --report print human readable report to stderr -V, --version Prints version information
OPTIONS:
-a, --algorithm json
, json_pretty
, fdupes
or machine
[default:
fdupes]
--max
ARGS:
Library usage:
```rust
let path: &Path = "any/path".asref();
let duplicateslist = yadf::count_files::
print!("{}", duplicateslist.display::
for duplicates in files_counter.duplicates() { println!("There are {} instances of this file", duplicates.len()); } ```
Building (with or without --release
):
- the library: cargo build
.
- the executable: cargo build --features build-bin
.