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