0.2.3 |
|
---|---|
0.2.2 |
|
0.2.1 |
|
0.2.0 |
|
0.1.0 |
|
#46 in #folders
16KB
402 lines
file-matcher-rs
A Rust library to search files based on the name pattern (regex, wildcard, exact).
Examples
Use FileNamed
to search for exactly one file matching the name pattern. Returns an Error
if none or more than one file was found.
FileNamed::regex("cat.*")
.within("tests/assets")
.find()?
Use FilesNamed
to find any amount of files matching the name pattern.
FilesNamed::wildmatch("*.txt")
.within("tests/assets")
.find()?
Dependencies
~0–510KB