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