Snap for 10460766 from d0a666aa5b1cdb5d9d06a4592782bfd6eb887b29 to mainline-healthfitness-release Change-Id: Ibcf7c6b832c3c5cda548bf0ac12096612d58e4df
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), } }