Snap for 10453563 from d0a666aa5b1cdb5d9d06a4592782bfd6eb887b29 to mainline-appsearch-release Change-Id: I6a973cede28d71c68b638cb5add1b16d84c1327a
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), } }