Lines Matching defs:file

8  * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
28 * file attributes, and file systems.
30 * <p> The java.nio.file package defines classes to access files and file
31 * systems. The API to access file and file system attributes is defined in the
32 * {@link java.nio.file.attribute} package. The {@link java.nio.file.spi}
37 * Many operating systems and file systems support for <em>symbolic links</em>.
38 * A symbolic link is a special file that serves as a reference to another file.
50 * toPath} method to construct a {@link java.nio.file.Path} by converting
52 * {@code Path} can be used to operate on the same file as the {@code File}
58 * The view of the files and file system provided by classes in this package are
61 * the view of the file system as seen by other concurrently running programs due
69 * The {@link java.nio.file.StandardOpenOption#SYNC SYNC} and {@link
70 * java.nio.file.StandardOpenOption#DSYNC DSYNC} options are used when opening a file
71 * to require that updates to the file are written synchronously to the underlying
72 * storage device. In the case of the default provider, and the file resides on
74 * seekable} channel is connected to a file that was opened with one of these
77 * method is only guaranteed to return when all changes made to the file
80 * crash. If the file does not reside on a local device then no such guarantee
82 * java.nio.file.spi.FileSystemProvider provider} implementations is provider
92 * <p> Unless otherwise noted, methods that attempt to access the file system
93 * will throw {@link java.nio.file.ClosedFileSystemException} when invoked on
94 * objects associated with a {@link java.nio.file.FileSystem} that has been
95 * {@link java.nio.file.FileSystem#close closed}. Additionally, any methods
96 * that attempt write access to a file system will throw {@link
97 * java.nio.file.ReadOnlyFileSystemException} when invoked on an object associated
98 * with a {@link java.nio.file.FileSystem} that only provides read-only
102 * this package created by one {@link java.nio.file.spi.FileSystemProvider
104 * will throw {@link java.nio.file.ProviderMismatchException}. </p>
108 * file system specify that {@link java.io.IOException} be thrown when an I/O
117 package java.nio.file;