Go to file
2020-01-24 05:59:42 +01:00
src Add Debug trait to MatchOptions 2020-01-24 05:59:15 +01:00
tests ran cargo fmt 2019-01-17 22:23:33 -05:00
.gitignore Initial commit. 2014-08-22 15:24:47 -07:00
azure-pipelines.yml Set up CI with Azure Pipelines (#86) 2019-07-29 08:28:44 +10: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

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