| Crates.io | fs-walk |
| lib.rs | fs-walk |
| version | 0.1.5 |
| created_at | 2024-09-04 21:13:56.096121+00 |
| updated_at | 2025-04-30 08:16:11.249171+00 |
| description | File-system walking crate |
| homepage | |
| repository | https://github.com/qjerome/fs-walk |
| max_upload_size | |
| id | 1363812 |
| size | 58,276 |
fs_walk is a crate providing functionalities to walk a
file-system recursively using std Rust APIs.
This crate currently supports:
regex: enable regex matchinguse fs_walk;
let o = fs_walk::WalkOptions::new()
// we want to walk only files
.files()
// we want files with .o extension
.extension("o");
assert!(o.walk("./").count() > 0);