collectfiles
Collects accurate files while running in parallel through directories. (Simple, Fast, Powerful)
| Docs | Latest Note |
[dependencies]
collectfiles = "1.0.0"
Example
use collectfiles::*;
let vec = CollectFiles("/Users/hwakyeom/programs/")
.with_depth(1)
.with_target_regex(".md$")
.with_hook(|path| path.with_extension("mutated"))
.collect();
println!("{:#?}", vec);