Package | Description |
---|---|
java.nio.file |
Defines interfaces and classes for the Java virtual machine to access files,
file attributes, and file systems.
|
Modifier and Type | Method and Description |
---|---|
static CloseableStream<Path> |
Files.find(Path start,
int maxDepth,
BiPredicate<Path,BasicFileAttributes> matcher,
FileVisitOption... options)
Return a
CloseableStream that is lazily populated with Path by searching for files in a file tree rooted at a given starting
file. |
static CloseableStream<String> |
Files.lines(Path path,
Charset cs)
Read all lines from a file as a
CloseableStream . |
static CloseableStream<Path> |
Files.list(Path dir)
Return a lazily populated
CloseableStream , the elements of
which are the entries in the directory. |
static CloseableStream<Path> |
Files.walk(Path start,
FileVisitOption... options)
Return a
CloseableStream that is lazily populated with Path by walking the file tree rooted at a given starting file. |
static CloseableStream<Path> |
Files.walk(Path start,
int maxDepth,
FileVisitOption... options)
Return a
CloseableStream that is lazily populated with Path by walking the file tree rooted at a given starting file. |
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.
DRAFT internal-0