tag | 6001aa740cd5641582745d31d5dc04f84d7aadfc | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Thu Feb 02 03:26:43 2023 -0800 |
object | 8ae97045042ef81581be16f7982ec528fead09e4 |
aml_sta_331311000 (9264397,com.google.android.os.statsd)
commit | 8ae97045042ef81581be16f7982ec528fead09e4 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:21:51 2022 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 10 07:21:51 2022 +0000 |
tree | 04e1f5beb84a6589374bc4dc670374327c99f50a | |
parent | ca6837a6eae68a09a8595ee7c72fb946fdaac71e [diff] | |
parent | 491a05717d51ae340c3311564ba4b7d1730ec797 [diff] |
Snap for 8564071 from 491a05717d51ae340c3311564ba4b7d1730ec797 to mainline-os-statsd-release Change-Id: I4484d081dfa562e1a0b9e9cd8a1d4b15eebf358c
Support for matching file paths against Unix shell style patterns.
To use glob
, add this to your Cargo.toml
:
[dependencies] glob = "0.3.0"
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), } }