| commit | 8f3f9adeea14be002a1224e664cbfa6c4a03add5 | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:03:50 2023 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:03:50 2023 +0000 |
| tree | 1b1ba7f0a897cdeda990520838f863cbaf2a3276 | |
| parent | dc91e88406f081644eb512383925ef98a29eca1a [diff] | |
| parent | d0a666aa5b1cdb5d9d06a4592782bfd6eb887b29 [diff] |
Snap for 10447354 from d0a666aa5b1cdb5d9d06a4592782bfd6eb887b29 to mainline-wifi-release Change-Id: I6d86454fcbe9122b164482fc4a80b3a8acf636c7
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), } }