add debug for path

This commit is contained in:
Pakin 2025-09-10 14:02:12 +07:00
parent d1e5386c90
commit 33823be1ed

View file

@ -74,7 +74,9 @@ pub fn get_all_files_in_directory(directory_path: &str) -> Vec<String> {
let entry = entry.unwrap();
let path = entry.path();
if path.is_file() {
files.push(path.as_os_str().to_str().unwrap().to_string());
let npath = path.as_os_str().to_str().unwrap().to_string();
println!("pushed {}", npath);
files.push(npath);
}
}