Rust Duplicate Finder

Rust Duplicate Finder is a Rust-based command-line tool and library for detecting duplicate files within a specified directory. It leverages the power and performance of Rust to quickly and efficiently find duplicate files, providing both a binary for direct use and a library for integration into other projects.

Features

Installation

To install Rust Duplicate Finder, you need to have Rust installed on your system. If you don't have Rust, follow the instructions on the official Rust website.

Once you have Rust installed, clone this repository: rust git clone https://github.com/yourusername/rust-duplicate-finder.git cd rust-duplicate-finder

Build and install the binary:

bash cargo build --release cargo install --path .

Usage

Binary

To use the Rust Duplicate Finder binary, run the following command: bash rust_duplicate_finder /path/to/directory This will start the duplicate file search in the specified directory, including its subdirectories. The output will be a list of duplicate files grouped by their content.

Library

To use the Rust Duplicate Finder library in your own Rust project, add it as a dependency in your Cargo.toml file:

rust [dependencies] rust_duplicate_finder = { git = "https://github.com/yourusername/rust-duplicate-finder.git" }

Then, in your Rust source code, import the rust_duplicate_finder crate and use its find_duplicates function:

```rust use rustduplicatefinder::find_duplicates;

fn main() { let path = "/path/to/directory"; let duplicates = find_duplicates(path).unwrap();

for (hash, files) in duplicates {
    println!("Duplicate files (hash: {}):", hash);
    for file in files {
        println!("\t- {}", file.display());
    }
}

} ```

License

This project is licensed under the MIT License. See LICENSE file for details.

Contributing

Contributions are welcome! Feel free to submit issues or pull requests, and we'll review them as soon as possible.