Support for matching file paths against Unix shell style patterns.
This crate is a fork of the glob crate. The only difference is that glob-rs add option follow_links to MatchOptions.
To use glob-sl
, add this to your Cargo.toml
:
toml
[dependencies]
glob-sl = "0.4.2"
And add this to your crate root:
rust
extern crate glob_sl;
Print all jpg files in /media/ and all of its subdirectories.
```rust use glob_sl::glob;
for entry in glob("/media/*/.jpg").expect("Failed to read glob pattern") { match entry { Ok(path) => println!("{:?}", path.display()), Err(e) => println!("{:?}", e), } } ```