Example usage for Java java.nio.file FileSystems fields, constructors, methods, implement or subclass
The text is from its open source code.
FileSystem | getDefault() Returns the default FileSystem . |
FileSystem | getFileSystem(URI uri) Returns a reference to an existing FileSystem . |
FileSystem | newFileSystem(URI uri, Map Constructs a new file system that is identified by a URI This method iterates over the FileSystemProvider#installedProviders() installed providers to locate the provider that is identified by the URI URI#getScheme scheme of the given URI. |
FileSystem | newFileSystem(Path path, ClassLoader loader) Constructs a new FileSystem to access the contents of a file as a file system. |
FileSystem | newFileSystem(Path path, Map Constructs a new FileSystem to access the contents of a file as a file system. |
FileSystem | newFileSystem(URI uri, Map Constructs a new file system that is identified by a URI This method first attempts to locate an installed provider in exactly the same manner as the #newFileSystem(URI,Map) newFileSystem(URI,Map) method. |
FileSystem | newFileSystem(Path path, Map Constructs a new FileSystem to access the contents of a file as a file system. |