PathWalkOption

JVM
JRE7
1.0
@ExperimentalPathApi enum class PathWalkOption
(source)

An enumeration to provide walk options for Path.walk function. The options can be combined to form the walk order and behavior needed.

Note that this enumeration is not exhaustive and new cases might be added in the future.

Enum Values

JVM
JRE7
1.0

INCLUDE_DIRECTORIES

Visits directories as well.

JVM
JRE7
1.0

BREADTH_FIRST

Walks in breadth-first order.

JVM
JRE7
1.0

FOLLOW_LINKS

Follows symbolic links to the directories they point to.