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
26 package java.nio.file;
46 * If the file is opened for {@link #WRITE} access then bytes will be written
47 * to the end of the file rather than the beginning.
49 * <p> If the file is opened for write access by other programs, then it
50 * is file system specific if writing to the end of the file is atomic.
55 * If the file already exists and it is opened for {@link #WRITE}
57 * if the file is opened only for {@link #READ} access.
62 * Create a new file if it does not exist.
64 * The check for the existence of the file and the creation of the file
65 * if it does not exist is atomic with respect to other file system
71 * Create a new file, failing if the file already exists.
72 * The check for the existence of the file and the creation of the file
73 * if it does not exist is atomic with respect to other file system
80 * makes a <em>best effort</em> attempt to delete the file when closed
83 * file when the Java virtual machine terminates (either normally, as
89 * the file is deleted are implementation specific and therefore not
91 * that it deletes the expected file when replaced by an attacker while the
92 * file is open. Consequently, security sensitive applications should take
97 * when opening an existing file that is a symbolic link then it may fail
103 * Sparse file. When used with the {@link #CREATE_NEW} option then this
104 * option provides a <em>hint</em> that the new file will be sparse. The
105 * option is ignored when the file system does not support the creation of
111 * Requires that every update to the file's content or metadata be written
114 * @see <a href="package-summary.html#integrity">Synchronized I/O file integrity</a>
119 * Requires that every update to the file's content be written
122 * @see <a href="package-summary.html#integrity">Synchronized I/O file integrity</a>