Module walkdir

Source
Available on crate feature fs-walkdir-parallel only.
Expand description

Structs§

DirEntryGeneric
Representation of a file or directory.
DirEntryIterGeneric
DirEntry iterator from WalkDir.into_iter().
Error
An error produced by recursively walking a directory.

Enums§

Parallelismwalkdir or fs-walkdir-parallel
The desired level of parallelism.

Functions§

walkdir_new
Instantiate a new directory iterator which will not skip hidden files, with the given level of parallelism.
walkdir_sorted_new
Instantiate a new directory iterator which will not skip hidden files and is sorted

Type Aliases§

DirEntry
An alias for an uncustomized directory entry to match the one of the non-parallel version offered by walkdir.
DirEntryIter
The Iterator yielding directory items
WalkDir
Builder for walking a directory.