• Home
Name Date Size #Lines LOC

..--

.github/workflows/22-Mar-2025-3628

src/22-Mar-2025-1,435976

tests/22-Mar-2025-378315

.gitignoreD22-Mar-202520 32

BUILD.gnD22-Mar-2025889 2723

Cargo.tomlD22-Mar-2025429 1815

LICENSE-APACHED22-Mar-202510.6 KiB202169

LICENSE-MITD22-Mar-20251 KiB2622

README.OpenSourceD22-Mar-2025347 1111

README.mdD22-Mar-2025748 3926

triagebot.tomlD22-Mar-20259 21

README.OpenSource

1[
2  {
3    "Name": "rust-lang/glob",
4    "License": "Apache License V2.0, MIT",
5    "License File": "LICENSE-APACHE, LICENSE-MIT",
6    "Version Number": "0.3.1",
7    "Owner": "fangting12@huawei.com",
8    "Upstream URL": "https://github.com/rust-lang/glob",
9    "Description": "A Rust library that provides support for glob pattern matching. "
10  }
11]

README.md

1glob
2====
3
4Support for matching file paths against Unix shell style patterns.
5
6[![Continuous integration](https://github.com/rust-lang/glob/actions/workflows/rust.yml/badge.svg)](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