Go to file
Lukas Kalbertodt a589436cc7
Merge pull request #97 from gibfahn/patch-1
Derive Debug for Paths
2020-06-24 22:46:56 +02:00
src Derive Debug for Paths 2020-06-17 12:46:35 +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
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),
    }
}