Struct fts::walkdir::WalkDirConf
[−]
[src]
pub struct WalkDirConf { // some fields omitted }
A configuration builder of the settings for directory walking.
Methods
impl WalkDirConf
fn new<P: AsRef<Path>>(root: P) -> Self
Create new WalkDirConf
with the root directory for directory walking.
fn follow_symlink(self) -> Self
Enable following symblic links.
fn cross_device(self) -> Self
Enable following symblic links across devices .
fn include_dot(self) -> Self
Enable enumerating .
and ..
.
fn no_metadata(self) -> Self
Disable providing metadata.
fn no_chdir(self) -> Self
Disable changing current directory through directory walking.
fn sort_by_name(self) -> Self
Sort by file name.
fn sort_by_len(self) -> Self
Sort by file length.
fn sort_by_atime(self) -> Self
Sort by access time.
fn sort_by_ctime(self) -> Self
Sort by create time.
fn sort_by_mtime(self) -> Self
Sort by modify time.
fn sort_ascending(self) -> Self
Sort by ascending order.
fn sort_descending(self) -> Self
Sort by descending order.