Crate yadf[][src]

This a binary crate. You can use it as a library, but I wouldn’t recommend it.

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 Definitions

FileCounter
FileReplicates