public class RootedFileSystemProvider extends FileSystemProvider
| Modifier and Type | Field and Description |
|---|---|
protected org.slf4j.Logger |
log |
| Constructor and Description |
|---|
RootedFileSystemProvider() |
installedProviderspublic String getScheme()
getScheme in class FileSystemProviderpublic FileSystem newFileSystem(URI uri, Map<String,?> env) throws IOException
newFileSystem in class FileSystemProviderIOExceptionpublic FileSystem getFileSystem(URI uri)
getFileSystem in class FileSystemProviderpublic FileSystem newFileSystem(Path path, Map<String,?> env) throws IOException
newFileSystem in class FileSystemProviderIOExceptionprotected FileSystem newFileSystem(Object src, Path path, Map<String,?> env) throws IOException
IOExceptionpublic Path getPath(URI uri)
getPath in class FileSystemProviderpublic InputStream newInputStream(Path path, OpenOption... options) throws IOException
newInputStream in class FileSystemProviderIOExceptionpublic OutputStream newOutputStream(Path path, OpenOption... options) throws IOException
newOutputStream in class FileSystemProviderIOExceptionpublic FileChannel newFileChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) throws IOException
newFileChannel in class FileSystemProviderIOExceptionpublic AsynchronousFileChannel newAsynchronousFileChannel(Path path, Set<? extends OpenOption> options, ExecutorService executor, FileAttribute<?>... attrs) throws IOException
newAsynchronousFileChannel in class FileSystemProviderIOExceptionpublic SeekableByteChannel newByteChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) throws IOException
newByteChannel in class FileSystemProviderIOExceptionpublic DirectoryStream<Path> newDirectoryStream(Path dir, DirectoryStream.Filter<? super Path> filter) throws IOException
newDirectoryStream in class FileSystemProviderIOExceptionprotected DirectoryStream<Path> root(RootedFileSystem rfs, DirectoryStream<Path> ds)
protected Iterator<Path> root(RootedFileSystem rfs, Iterator<Path> iter)
public void createDirectory(Path dir, FileAttribute<?>... attrs) throws IOException
createDirectory in class FileSystemProviderIOExceptionpublic void createSymbolicLink(Path link, Path target, FileAttribute<?>... attrs) throws IOException
createSymbolicLink in class FileSystemProviderIOExceptionpublic void createLink(Path link, Path existing) throws IOException
createLink in class FileSystemProviderIOExceptionprotected void createLink(Path link, Path target, boolean symLink, FileAttribute<?>... attrs) throws IOException
IOExceptionpublic void delete(Path path) throws IOException
delete in class FileSystemProviderIOExceptionpublic boolean deleteIfExists(Path path) throws IOException
deleteIfExists in class FileSystemProviderIOExceptionpublic Path readSymbolicLink(Path link) throws IOException
readSymbolicLink in class FileSystemProviderIOExceptionpublic void copy(Path source, Path target, CopyOption... options) throws IOException
copy in class FileSystemProviderIOExceptionpublic void move(Path source, Path target, CopyOption... options) throws IOException
move in class FileSystemProviderIOExceptionpublic boolean isSameFile(Path path, Path path2) throws IOException
isSameFile in class FileSystemProviderIOExceptionpublic boolean isHidden(Path path) throws IOException
isHidden in class FileSystemProviderIOExceptionpublic FileStore getFileStore(Path path) throws IOException
getFileStore in class FileSystemProviderIOExceptionprotected RootedFileSystem getFileSystem(Path path) throws FileSystemNotFoundException
FileSystemNotFoundExceptionpublic void checkAccess(Path path, AccessMode... modes) throws IOException
checkAccess in class FileSystemProviderIOExceptionpublic <V extends FileAttributeView> V getFileAttributeView(Path path, Class<V> type, LinkOption... options)
getFileAttributeView in class FileSystemProviderpublic <A extends BasicFileAttributes> A readAttributes(Path path, Class<A> type, LinkOption... options) throws IOException
readAttributes in class FileSystemProviderIOExceptionpublic Map<String,Object> readAttributes(Path path, String attributes, LinkOption... options) throws IOException
readAttributes in class FileSystemProviderIOExceptionpublic void setAttribute(Path path, String attribute, Object value, LinkOption... options) throws IOException
setAttribute in class FileSystemProviderIOExceptionprotected FileSystemProvider provider(Path path)
protected Path root(RootedFileSystem rfs, Path nat)
protected Path unroot(Path path)
path - The original (rooted) PathPath represented by the rooted
oneIllegalArgumentException - if null path argumentProviderMismatchException - if not a RootedPathresolveLocalPath(RootedPath)protected Path resolveLocalPath(RootedPath path)
path - The original RootedPath - never nullPath represented by the rooted oneInvalidPathException - If the resolved path is not a proper sub-path of the rooted file systemCopyright © 2018–2021 The Apache Software Foundation. All rights reserved.