Registry / utility / globwalk

globwalk

JSON →
library0.9.1rscratesunverified

Glob-matched recursive file system walking.

# Cargo.toml [dependencies] globwalk = "0.9.1"
INSTALL
IMPORT
SIG · GLOBWALK
G
globwalk
utilityrustv0.9.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

GlobWalker
use globwalk::GlobWalker;

Walk the filesystem matching files with a glob pattern.

use globwalk::GlobWalker; fn main() { let walker = GlobWalker::from_patterns("src/**/*.rs", &[]).unwrap(); for entry in walker { if let Ok(entry) = entry { println!("{}", entry.path().display()); } } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.9.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
globwalk — cargo add globwalk · libregistry