#file-tree #comparison #exploring #walk #format #path #largest

bin+lib treewalk

Common utilities for exploring a file tree

1 unstable release

0.1.4 Jan 15, 2023
0.1.3 Jan 7, 2023
0.1.2 Jan 6, 2023
0.1.1 Jan 2, 2023
0.1.0 Jan 2, 2023

#1065 in Filesystem

MIT license

12KB
205 lines

Crate Info

treewalk

Common utilities for exploring a file tree

Example usage

    use std::path::{Path, PathBuf};
    use treewalk::walk::{comparison, lineage, format, utils};

    fn main() {
        let path = Path::new("./foo/bar");
        let children: Vec<PathBuf> = lineage::get_all_children(&path.to_path_buf()).unwrap();

        // or create children from strings via
        let children_from_strs = utils::tree!["./this_file.txt", "./that_file.txt"];

        // get the largest file
        let largest = comparison::largest_file(&children);
        if let Some(file_name) = &largest.name {
            println!("{:?}: {:?}", file_name, format::human_readable(largest.size, false));
        }

        // get only dotfiles
        let dotfiles: Vec<PathBuf> = children
            .into_iter()
            .filter(|path| comparison::is_dotfile(path))
            .collect();
        println!("{:?}", dotfiles);

    }

No runtime deps