zhaipeizhe f32dd8141e update Name in README.OpenSource
Signed-off-by: zhaipeizhe <zhaipeizhe@huawei.com>
Change-Id: I5dfc62c9862c1e3f0ea45ac84fd3949800b73057
2024-10-31 17:00:50 +08:00
2023-01-05 19:13:28 +09:00
2019-01-17 22:23:33 -05:00
2014-08-22 15:24:47 -07:00
2023-01-05 19:13:28 +09:00
2014-08-22 15:24:47 -07:00
2014-08-22 15:24:47 -07:00
2023-01-05 19:13:28 +09:00
2020-03-31 17:07:53 -04:00

glob

Support for matching file paths against Unix shell style patterns.

Continuous integration

Documentation

Usage

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

[dependencies]
glob = "0.3.1"

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),
    }
}
S
Description
提供支持全局模式匹配的功能。 | A Rust library that provides support for glob pattern matching.
Readme 715 KiB
Languages
Rust 100%