collectfiles


Collects accurate files while running in parallel through directories. (Simple, Fast, Powerful)

CI Crates.io Licensed Twitter

| Docs | Latest Note |

toml [dependencies] collectfiles = "1.0.0"


Example

```rust use collectfiles::*;

let vec = CollectFiles("/Users/hwakyeom/programs/") .withdepth(1) .withtargetregex(".md$") .withhook(|path| path.with_extension("mutated")) .collect();

println!("{:#?}", vec); ```