Searched refs:file (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/libcore/ojluni/src/main/java/java/nio/file/
H A DFileSystemLoopException.java8 * 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;
29 * Checked exception thrown when a file system loop, or cycle, is encountered.
43 * @param file
44 * a string identifying the file causing the cycle or {@code null} if
47 public FileSystemLoopException(String file) { argument
48 super(file);
H A DNotDirectoryException.java8 * 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;
29 * Checked exception thrown when a file system operation, intended for a
30 * directory, fails because the file is not a directory.
43 * @param file
44 * a string identifying the file or {@code null} if not known
46 public NotDirectoryException(String file) { argument
47 super(file);
[all...]
H A DCopyOption.java8 * 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;
29 * An object that configures how to copy or move a file.
35 * Files.move(Path,Path,CopyOption...)} methods to configure how a file is
H A DFileVisitOption.java8 * 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;
29 * Defines the file tree traversal options.
H A DOpenOption.java8 * 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;
29 * An object that configures how to open or create a file.
36 * when opening or creating a file.
H A DAccessDeniedException.java8 * 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;
29 * Checked exception thrown when a file system operation is denied, typically
30 * due to a file permission or other access check.
35 * access to a file is denied.
48 * @param file
49 * a string identifying the file or {@code null} if not known
51 public AccessDeniedException(String file) { argument
65 AccessDeniedException(String file, String other, String reason) argument
[all...]
H A DFileAlreadyExistsException.java8 * 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;
29 * Checked exception thrown when an attempt is made to create a file or
30 * directory and a file of that name already exists.
43 * @param file
44 * a string identifying the file or {@code null} if not known
46 public FileAlreadyExistsException(String file) { argument
47 super(file);
60 FileAlreadyExistsException(String file, String other, String reason) argument
[all...]
H A DNoSuchFileException.java8 * 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;
29 * Checked exception thrown when an attempt is made to access a file that does
43 * @param file
44 * a string identifying the file or {@code null} if not known.
46 public NoSuchFileException(String file) { argument
47 super(file);
53 * @param file
60 NoSuchFileException(String file, String other, String reason) argument
[all...]
H A DNotLinkException.java8 * 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;
29 * Checked exception thrown when a file system operation fails because a file
43 * @param file
44 * a string identifying the file or {@code null} if not known
46 public NotLinkException(String file) { argument
47 super(file);
60 NotLinkException(String file, String other, String reason) argument
[all...]
H A DFileSystemException.java8 * 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;
31 * Thrown when a file system operation fails on one or two files. This class is
32 * the general class for file system exceptions.
42 private final String file; field in class:FileSystemException
47 * when an operation involving one file fails and there isn't any additional
50 * @param file
51 * a string identifying the file o
53 FileSystemException(String file) argument
72 FileSystemException(String file, String other, String reason) argument
[all...]
H A DAccessMode.java8 * 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;
29 * Defines access modes used to test the accessibility of a file.
H A DClosedDirectoryStreamException.java8 * 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;
H A DClosedFileSystemException.java8 * 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;
30 * a file and the file system is closed.
H A DClosedWatchServiceException.java8 * 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;
H A DFileVisitResult.java8 * 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;
55 * Continue without visiting the <em>siblings</em> of this file or directory.
H A DLinkOption.java8 * 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;
H A DPathMatcher.java8 * 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;
H A DReadOnlyFileSystemException.java8 * 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;
H A DStandardCopyOption.java8 * 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;
36 * Replace an existing file if it exists.
40 * Copy attributes to the new file.
44 * Move the file as an atomic file system operation.
/libcore/ojluni/src/main/java/com/sun/nio/file/
H A DExtendedCopyOption.java8 * 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 com.sun.nio.file;
28 import java.nio.file.CopyOption;
H A DExtendedOpenOption.java8 * 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 com.sun.nio.file;
28 import java.nio.file.OpenOption;
39 * Prevent operations on the file that request read access.
43 * Prevent operations on the file that request write access.
47 * Prevent operations on the file that request delete access.
H A DExtendedWatchEventModifier.java8 * 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 com.sun.nio.file;
28 import java.nio.file.WatchEvent.Modifier;
40 * Register a file tree instead of a single directory.
/libcore/luni/src/test/java/libcore/java/io/
H A DOldAndroidFileTest.java5 * you may not use this file except in compliance with the License.
23 * Checks creation and deletion of a file.
28 File file = File.createTempFile(String.valueOf(System.currentTimeMillis()), null, null);
30 assertTrue(file.exists());
31 assertTrue(file.delete());
32 assertFalse(file.exists());
/libcore/ojluni/src/main/java/java/nio/file/attribute/
H A DAttributeView.java8 * 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.attribute;
H A DFileAttributeView.java8 * 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.attribute;
30 * values associated with a file in a filesystem. This interface is extended or
31 * implemented by specific file attribute views that define methods to read
32 * and/or update the attributes of a file.
36 * @see java.nio.file.Files#getFileAttributeView(Path,Class,java.nio.file.LinkOption[])

Completed in 989 milliseconds

1234567891011>>