This commit is contained in:
2025-05-31 22:56:05 -04:00
parent ef3d605528
commit 21f6e492f6
30 changed files with 1145 additions and 1286 deletions
+2 -3
View File
@@ -1,8 +1,7 @@
use std::{fs, io};
use std::fs;
use std::path::Path;
pub fn list_of_files_in_directory(root_directory: &Path) -> String {
let mut return_value = String::new();
if root_directory.is_dir() {
@@ -15,4 +14,4 @@ pub fn list_of_files_in_directory(root_directory: &Path) -> String {
}
}
return_value
}
}