Lines Matching defs:path

239      * path component is {@code "/"} and the authority, query and fragment components
278 * given URI has a non-empty path component, and undefined query, and
316 * @param path
317 * The path to the file
337 public FileSystem newFileSystem(Path path, Map<String,?> env)
353 * @param path
354 * the path to the file to open
371 public InputStream newInputStream(Path path, OpenOption... options)
380 return Channels.newInputStream(Files.newByteChannel(path));
393 * @param path
394 * the path to the file to open or create
414 public OutputStream newOutputStream(Path path, OpenOption... options)
430 return Channels.newOutputStream(newByteChannel(path, opts));
443 * @param path
444 * the path of the file to open or create
467 public FileChannel newFileChannel(Path path,
487 * @param path
488 * the path of the file to open or create
515 public AsynchronousFileChannel newAsynchronousFileChannel(Path path,
529 * @param path
530 * the path to the file to open or create
553 * method is invoked to check read access to the path if the file is
555 * checkWrite} method is invoked to check write access to the path
561 public abstract SeekableByteChannel newByteChannel(Path path,
572 * the path to the directory
625 * the path of the symbolic link to create
645 * method denies write access to the path of the symbolic link.
664 * a path to an existing file
689 * @param path
690 * the path to the file to delete
705 public abstract void delete(Path path) throws IOException;
715 * @param path
716 * the path to the file to delete
733 public boolean deleteIfExists(Path path) throws IOException {
735 delete(path);
750 * the path to the symbolic link
775 * the path to the file to copy
777 * the path to the target file
811 * the path to the file to move
813 * the path to the target file
845 * @param path
846 * one path to the file
848 * the other path
859 public abstract boolean isSameFile(Path path, Path path2)
869 * @param path
870 * the path to the file to test
881 public abstract boolean isHidden(Path path) throws IOException;
888 * @param path
889 * the path to the file
902 public abstract FileStore getFileStore(Path path) throws IOException;
950 * @param path
951 * the path to the file to check
977 public abstract void checkAccess(Path path, AccessMode... modes)
985 * @param path
986 * the path to the file
996 getFileAttributeView(Path path, Class<V> type, LinkOption... options);
1003 * @param path
1004 * the path to the file
1023 readAttributes(Path path, Class<A> type, LinkOption... options) throws IOException;
1030 * @param path
1031 * the path to the file
1054 public abstract Map<String,Object> readAttributes(Path path, String attributes,
1062 * @param path
1063 * the path to the file
1090 public abstract void setAttribute(Path path, String attribute,