There are two forms paths are written as. The simplest form, which simply converts the path into a string using {@link Path#toString()} is used whenthe filesystem is the default local filesystem. For other filesystem types, a URI is written including the scheme which links back to the filesystem provider.
It is also possible to subclass this transformer and override the {@link #pathToStringForSpecialFileSystem(Path)} and {@link #stringToPathForSpecialFileSystem(String)}methods to provide a more customized conversions for special filesystem types, such as TrueVFS. @author prunge
|
|