• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-1,412961

tests/H03-May-2022-378315

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.gitignoreH A D04-Mar-201920 32

.travis.ymlH A D04-Mar-2019563 2521

Cargo.tomlH A D01-Jan-1970933 2523

Cargo.toml.orig-cargoH A D07-Mar-2019406 1714

LICENSE-APACHEH A D04-Mar-201910.6 KiB202169

LICENSE-MITH A D04-Mar-20191 KiB2622

README.mdH A D07-Mar-2019724 3926

README.md

1glob
2====
3
4Support for matching file paths against Unix shell style patterns.
5
6[![Build Status](https://travis-ci.org/rust-lang-nursery/glob.svg?branch=master)](https://travis-ci.org/rust-lang-nursery/glob)
7
8[Documentation](https://doc.rust-lang.org/glob)
9
10## Usage
11
12To use `glob`, add this to your `Cargo.toml`:
13
14```toml
15[dependencies]
16glob = "0.3.0"
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