fast-walker 0.0.0

Multi-threaded directory walker, with async support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use fast_walker::WalkPlan;

#[test]
fn ready() {
    println!("it works!")
}

#[test]
fn test() {
let root = "C:\\P4Root";
let plan = WalkPlan::new(root).reject_if(|path, _| path.starts_with("."));
for item in plan.into_iter().take(10) {
    println!("{:?}", item);
}
}