Yuki Okushi 51a1d3fd9b
Update GHA OS versions to latest
Signed-off-by: Yuki Okushi <jtitor@2k36.org>
2022-10-28 07:57:11 +09:00
2019-01-17 22:23:33 -05:00
2014-08-22 15:24:47 -07:00
2022-06-11 22:08:04 -07:00
2014-08-22 15:24:47 -07:00
2014-08-22 15:24:47 -07:00
2019-07-29 08:28:44 +10:00
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),
    }
}
Description
No description provided
Readme 388 KiB
Languages
Rust 100%