Go to file
Ashley Mannix 91248c13ba
Merge pull request #113 from rust-lang-nursery/ci/gh-actions
Replace Azure Pipelines with GitHub Actions
2022-06-05 18:52:05 +10:00
.github/workflows Replace Azure Pipelines with GitHub Actions 2022-06-04 08:24:05 +10:00
src Merge pull request #93 from brmmm3/move_tokens_len 2021-01-08 19:13:53 +10:00
tests ran cargo fmt 2019-01-17 22:23:33 -05:00
.gitignore Initial commit. 2014-08-22 15:24:47 -07:00
Cargo.toml Add doc-comment to test README examples 2019-05-02 17:28:28 +02:00
LICENSE-APACHE Initial commit. 2014-08-22 15:24:47 -07:00
LICENSE-MIT Initial commit. 2014-08-22 15:24:47 -07:00
README.md Set up CI with Azure Pipelines (#86) 2019-07-29 08:28:44 +10:00
triagebot.toml Add triagebot configuration 2020-03-31 17:07:53 -04:00

glob

Support for matching file paths against Unix shell style patterns.

Build Status

Documentation

Usage

To use glob, add this to your Cargo.toml:

[dependencies]
glob = "0.3.0"

And add this to your crate root:

extern crate glob;

Examples

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),
    }
}