Function dowser::dowse[][src]

pub fn dowse<P, I>(paths: I) -> Vec<PathBuf> where
    P: AsRef<Path>,
    I: IntoIterator<Item = P>, 

Traverse Paths Deeply.

This works just like Dowser, but without any state or filtering logic, making it more efficient in cases where you just want a dump of ALL FILES.

Examples

let files = dowser::dowse(&["/usr/share"]);