file_integrity

Crates.io

The File Integrity Library is a Rust crate designed to help you calculate MD5 hashes for files and generate JSON reports of the file integrity status. This can be useful for verifying the integrity of files in a list, such as during software distribution or system monitoring.

Features

Installation

Add this crate to your Cargo.toml:

toml [dependencies] file_integrity = "0.1.2"

Usage

Hashing a the all computer files

```rust fn main() { let folderpath = "/" ; let nbsoffile = listfiles(&folderpath); log!("INFOS: Number of files: {nbsof_file}");

let file_path_list = "file_list.txt";

let hashs = hash_file_list(file_path_list);
let name = "outp2ut.json" ; 
write_json_file(&hashs, &name);

} ```