ls-option: a tiny and simple to used library for ls-like functionality in pure Rust
Quick Start
# try to list all files with suffix `.rs` in current path
# try to list paths in an unexisted path
Example 1:
use *;
let fs = default
// allow to show file
.file
// not allow to show dir
.dir
// allow to show unhidden
.unhidden
// not allow to show hidden
.hidden
// walk recursively to search path
.recursive
// only show path with one of these suffix
.sufs
// start list the expected path search from `.`
.list;
dbg!;