| Interface | Description |
|---|---|
| FileFilter |
An interface for filtering
File objects based on their names or other
information. |
| FilenameFilter |
An interface for filtering
File objects based on their names or the
directory they reside in. |
| Class | Description |
|---|---|
| File |
An "abstract" representation of a file system entity identified by a
pathname.
|
| FileDescriptor |
Represents a file descriptor, but does not have the same semantics as a POSIX
fd.
|
| FileInputStream |
An input stream that reads bytes from a file.
|
| FileOutputStream |
An output stream that writes bytes to a file.
|
| FileReader |
A specialized
Reader that reads from a file in the file system. |
| FileWriter |
A specialized
Writer that writes to a file in the file system. |
| IOCipherFileChannel |
IOCipher's implementation of the FileChannel class.
|
| RandomAccessFile |
Allows reading from and writing to a file in a random-access manner.
|
| VirtualFileSystem |
A virtual file system container.
|