You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker
7ee447c011
|
4 months ago | |
---|---|---|
.. | ||
src | 4 months ago | |
tests | 4 months ago | |
.cargo_vcs_info.json | 4 months ago | |
.travis.yml | 4 months ago | |
Android.bp | 4 months ago | |
Cargo.toml | 4 months ago | |
Cargo.toml.orig | 4 months ago | |
LICENSE | 4 months ago | |
LICENSE-APACHE | 4 months ago | |
LICENSE-MIT | 4 months ago | |
METADATA | 4 months ago | |
MODULE_LICENSE_APACHE2 | 4 months ago | |
OWNERS | 4 months ago | |
README.md | 4 months ago | |
TEST_MAPPING | 4 months ago |
README.md
glob
Support for matching file paths against Unix shell style patterns.
Usage
To use glob
, add this to your Cargo.toml
:
[dependencies]
glob = "0.3.0"
And add this to your crate root:
extern crate glob;
Examples
Print all jpg files in /media/ and all of its subdirectories.
use glob::glob;
for entry in glob("/media/**/*.jpg").expect("Failed to read glob pattern") {
match entry {
Ok(path) => println!("{:?}", path.display()),
Err(e) => println!("{:?}", e),
}
}