You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
czkawka/src/duplicate_finder.rs

25 lines
416 B
Rust

// Todo, należy upewnić się, że ma wystarczające uprawnienia do odczytu i usuwania
struct DuplicateFinder {
number_of_all_files_with_duplicates : u64,
number_of_duplicated_files : u64,
//map_of_values : u32,
excluded_directories : Vec<String>,
included_directories : Vec<String>
}
impl DuplicateFinder{
}
struct FileEntry {
file_path : String,
file_size : u64
}
fn find(){
}