Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | 03-May-2024 | - | 36 | 28 | ||
src/ | 03-May-2024 | - | 1,435 | 976 | ||
tests/ | 03-May-2024 | - | 378 | 315 | ||
.cargo_vcs_info.json | D | 03-May-2024 | 94 | 6 | 6 | |
.gitignore | D | 03-May-2024 | 20 | 3 | 2 | |
Android.bp | D | 03-May-2024 | 1.8 KiB | 55 | 51 | |
Cargo.toml | D | 03-May-2024 | 952 | 31 | 27 | |
Cargo.toml.orig | D | 03-May-2024 | 429 | 18 | 15 | |
LICENSE | D | 03-May-2024 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 03-May-2024 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 03-May-2024 | 1 KiB | 26 | 22 | |
METADATA | D | 03-May-2024 | 626 | 24 | 22 | |
MODULE_LICENSE_APACHE2 | D | 03-May-2024 | 0 | |||
OWNERS | D | 03-May-2024 | 40 | 2 | 1 | |
README.md | D | 03-May-2024 | 748 | 39 | 26 | |
TEST_MAPPING | D | 03-May-2024 | 431 | 21 | 20 | |
cargo2android.json | D | 03-May-2024 | 35 | 4 | 4 | |
triagebot.toml | D | 03-May-2024 | 9 | 2 | 1 |
README.md
1glob 2==== 3 4Support for matching file paths against Unix shell style patterns. 5 6[](https://github.com/rust-lang/glob/actions/workflows/rust.yml) 7 8[Documentation](https://docs.rs/glob) 9 10## Usage 11 12To use `glob`, add this to your `Cargo.toml`: 13 14```toml 15[dependencies] 16glob = "0.3.1" 17``` 18 19And add this to your crate root: 20 21```rust 22extern crate glob; 23``` 24 25## Examples 26 27Print all jpg files in /media/ and all of its subdirectories. 28 29```rust 30use glob::glob; 31 32for entry in glob("/media/**/*.jpg").expect("Failed to read glob pattern") { 33 match entry { 34 Ok(path) => println!("{:?}", path.display()), 35 Err(e) => println!("{:?}", e), 36 } 37} 38``` 39