rustHow to iterate directory recursively in Rust
Iterating a directory recursively in Rust can be done using the WalkDir
crate. It provides an iterator over the entries of a directory and its subdirectories.
Example code
use walkdir::WalkDir;
for entry in WalkDir::new("/path/to/dir") {
let entry = entry.unwrap();
println!("{}", entry.path().display());
}
Output example
/path/to/dir
/path/to/dir/subdir1
/path/to/dir/subdir1/file1
/path/to/dir/subdir1/file2
/path/to/dir/subdir2
/path/to/dir/subdir2/file3
Code explanation
use walkdir::WalkDir;
: imports theWalkDir
crate.WalkDir::new("/path/to/dir")
: creates a newWalkDir
iterator over the entries of the directory at the given path.let entry = entry.unwrap()
: unwraps theResult
returned by the iterator.println!("{}", entry.path().display())
: prints the path of the entry.
Helpful links
Related
More of Rust
- How to use regex to match a group in Rust?
- How to get a capture group using Rust regex?
- How to replace strings using Rust regex?
- How to match digits with regex in Rust?
- How to use regex with bytes in Rust?
- How to use regex to match a double quote in Rust?
- How to parse JSON string in Rust?
- How to serialize JSON in Rust?
- How to implement PartialEq for a Rust HashMap?
- How to use a tuple as a key in a Rust HashMap?
See more codes...