kotlin.io.FileWalkDirection

FileWalkDirection

enum class FileWalkDirection

Platform and version requirements: JVM

An enumeration to describe possible walk directions. There are two of them: beginning from parents, ending with children, and beginning from children, ending with parents. Both use depth-first search.

Enum Values

TOP_DOWN

Depth-first search, directory is visited BEFORE its files

<