| commit | 5f9105d955eca9c921d235d5a12d7aa6d07c1507 | [log] [tgz] |
|---|---|---|
| author | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:03:08 2023 +0000 |
| committer | Android Build Coastguard Worker <[email protected]> | Fri Jul 07 01:03:08 2023 +0000 |
| tree | 1b1ba7f0a897cdeda990520838f863cbaf2a3276 | |
| parent | 943881ae739884bd0fb4a3d0260eaab660a0c30c [diff] | |
| parent | d0a666aa5b1cdb5d9d06a4592782bfd6eb887b29 [diff] |
Snap for 10447354 from d0a666aa5b1cdb5d9d06a4592782bfd6eb887b29 to mainline-resolv-release Change-Id: I7b77a8265a50277d67e079c3bca1a3c5cba4f531
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), } }