file-matcher 0.4.0

A library to search files based on the name pattern (regex, wildmatch, exact)
Documentation
# 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()?
```