Crate yadf

Source
Expand description

This is a binary crate. You can use it as a library, but I wouldn’t recommend it. If you do, remember to disable the default features which are used to build the binary.

[dependencies]
yadf = { version = "0.15.0", default-features = false }

A collection of functions and structs to find duplicate files.

§Example :

Find and display all the duplicate files at the given paths :

let counter = yadf::Yadf::builder()
    .paths(paths)
    .build()
    .scan::<highway::HighwayHasher>();
println!("{}", counter.duplicates().display::<yadf::Fdupes>());

Re-exports§

pub use globset;
pub use regex;

Structs§

Fdupes
Display marker.
Machine
Display marker.
Path
Serialization wrapper for paths.
TreeBag
Ordered counter structure.
Yadf
Search configuration.
YadfBuilder
Builder for Yadf instances.

Enums§

Factor

Type Aliases§

FileCounter
FileReplicates