Do A Case Insensitive glob Director Search In Rust
//! ```cargo
//! [dependencies]
//! glob = "0.3.1"
//! ```
use glob_with;
use MatchOptions;
Output:
"glob_test/BRAVO.txt"
"glob_test/echo.txt"
"glob_test/fOxtrOt.txt"
"glob_test/golf.txt"
"glob_test/hotel.txt"
Notes
- This example is stright from >the rust docs>https://docs.rs/glob/latest/glob/>
- I haven't looked up the separator and leading_dot options yet
-- end of line --