folder

Crates.iofolder
lib.rsfolder
version0.6.0
sourcesrc
created_at2023-02-09 07:07:27.971242
updated_at2024-02-20 14:26:29.547782
descriptionThe package allows for scanning directories in parallel.
homepagehttps://github.com/stainless-steel/folder
repositoryhttps://github.com/stainless-steel/folder
max_upload_size
id780559
size7,364
Owners (github:buoyantio:owners)

documentation

https://docs.rs/folder

README

Folder Package Documentation Build

The package allows for scanning directories in parallel.

Example

use std::path::Path;

let filter = |_: &Path| true;
let map = |path: &Path, _| Ok(path.exists());
let (paths, results): (Vec<_>, Vec<_>) = folder::scan("src", filter, map, (), None).unzip();

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

Commit count: 10

cargo fmt