listDirectoryEntries

JVM
JRE7
1.5
fun Path.listDirectoryEntries(glob: String = "*"): List<Path>
(source)

Returns a list of the entries in this directory optionally filtered by matching against the specified glob pattern.

Parameters

glob - the globbing pattern. The syntax is specified by the FileSystem.getPathMatcher method.

Exceptions

java.util.regex.PatternSyntaxException - if the glob pattern is invalid.

NotDirectoryException - If this path does not refer to a directory.

IOException - If an I/O error occurs.

See Also

Files.newDirectoryStream