Finder
Crate finder is a very simple and lightweight file searcher with the filtering of files.
It provides an efficient implementation of recursive file search.
To use this crate, add finder as a dependency to your project's
Cargo.toml:
[]
= "0.1"
Example
The following code recursively search all files in /foo and /bar diresctories:
extern crate finder;
use Finder;
Example with filter
The following code recursively search .ttf and .ttc files in /foo and /bar diresctories:
extern crate finder;
use DirEntry;
use Finder;