Lines Matching refs:glob
3 extern crate glob;
11 use glob::{MatchOptions, Pattern};
185 /// Finds the files in a directory that match one or more filename glob patterns
189 // special meaning in glob patterns (e.g., `[` or `]`).
193 // Join the escaped directory to the filename glob patterns to obtain
194 // complete glob patterns for the files being searched for.
205 .map(|p| glob::glob_with(&p, options))
226 /// match one or more filename glob patterns and returns the paths to and
245 /// filename glob patterns and returns the paths to and filenames of those files.
311 if let Ok(directories) = glob::glob_with(directory, options) {