Registry / utility / walkdir

walkdir

JSON →
library2.5.0rscratesunverified

Recursively walk a directory.

# Cargo.toml [dependencies] walkdir = "2.5.0"
INSTALL
IMPORT
SIG · WALKDIR
W
walkdir
utilityrustv2.5.0
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.

WalkDir
use walkdir::WalkDir;

Recursively walks the current directory and prints all paths.

use walkdir::WalkDir; fn main() { for entry in WalkDir::new(".") { let entry = entry.unwrap(); println!("{}", entry.path().display()); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.5.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
walkdir — cargo add walkdir · libregistry