| commit | 96ccea1a9cdbf66749276a53c6b5b78156f9932d | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:19:15 2023 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:19:15 2023 +0000 |
| tree | 1b1ba7f0a897cdeda990520838f863cbaf2a3276 | |
| parent | d52881c8b7688384132a2502441e3e4d166814fd [diff] | |
| parent | d0a666aa5b1cdb5d9d06a4592782bfd6eb887b29 [diff] |
Snap for 10447354 from d0a666aa5b1cdb5d9d06a4592782bfd6eb887b29 to mainline-networking-release Change-Id: I1f87c87356168de25e412ce01381bcc2f1ffae12
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), } }