Package org.apache.commons.io.file.spi
Class FileSystemProviders
java.lang.Object
org.apache.commons.io.file.spi.FileSystemProviders
Helps to work with 
FileSystemProvider.- Since:
- 2.9.0
- 
Method SummaryModifier and TypeMethodDescriptiongetFileSystemProvider(String scheme) Gets theFileSystemProviderfor the given scheme.getFileSystemProvider(URI uri) Gets theFileSystemProviderfor the given URI.getFileSystemProvider(URL url) Gets theFileSystemProviderfor the given URL.static FileSystemProvidergetFileSystemProvider(Path path) Gets theFileSystemProviderfor the given Path.static FileSystemProvidersReturns the instance for the installed providers.
- 
Method Details- 
getFileSystemProviderGets theFileSystemProviderfor the given Path.- Parameters:
- path- The Path to query
- Returns:
- the FileSystemProviderfor the given Path.
 
- 
installedReturns the instance for the installed providers.- Returns:
- the instance for the installed providers.
- See Also:
 
- 
getFileSystemProviderGets theFileSystemProviderfor the given scheme.- Parameters:
- scheme- The scheme to query.
- Returns:
- the FileSystemProviderfor the given URI or null.
 
- 
getFileSystemProviderGets theFileSystemProviderfor the given URI.- Parameters:
- uri- The URI to query
- Returns:
- the FileSystemProviderfor the given URI or null.
 
- 
getFileSystemProviderGets theFileSystemProviderfor the given URL.- Parameters:
- url- The URL to query
- Returns:
- the FileSystemProviderfor the given URI or null.
 
 
-