Migrate to cargo_embargo. am: b47024f75b am: 5f368e7159 am: 6879b310b3 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/glob/+/2822154 Change-Id: I9b06dc94def163ac1b91b8dad67c31182bc15f81 Signed-off-by: Automerger Merge Worker <[email protected]>
Support for matching file paths against Unix shell style patterns.
To use glob, add this to your Cargo.toml:
[dependencies] glob = "0.3.1"
And add this to your crate root:
extern crate glob;
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), } }