pub fn shallow_find_dir_entries<P: AsRef<Path>>(dir: P) -> Vec<PathBuf>Expand description
A function which prints all file names in the directory dir similarly to Unix’s ls.
Useful for debugging.
Usage: eprintln!("{:#?}", shallow_find_dir_entries(some_dir));