Java org.apache.commons.vfs.impl DefaultFileSystemManager fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.vfs.impl DefaultFileSystemManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.vfs.impl DefaultFileSystemManager.

The text is from its open source code.

Subclass

org.apache.commons.vfs.impl.DefaultFileSystemManager has subclasses.
Click this link to see all its subclasses.

Field

booleaninit

Constructor

Method

voidaddExtensionMap(final String extension, final String scheme)
Adds an filename extension mapping.
voidaddOperationProvider(final String scheme, final FileOperationProvider operationProvider)
Adds the specified FileOperationProvider for the specified scheme.
voidaddOperationProvider(final String[] schemes, final FileOperationProvider operationProvider)
voidaddProvider(final String urlScheme, final FileProvider provider)
Registers a file system provider.
voidaddProvider(final String[] urlSchemes, final FileProvider provider)
Registers a file system provider.
voidclose()
Closes all files created by this manager, and cleans up any temporary files.
FilesCachegetFilesCache()
Returns the filesCache implementation used to cache files
FileReplicatorgetReplicator()
Returns the file replicator.
TemporaryFileStoregetTemporaryFileStore()
Returns the temporary file store.
booleanhasProvider(final String scheme)
Returns true if this manager has a provider for a particular scheme.
FileObjectresolveFile(final String uri)
Locates a file by URI.
voidsetBaseFile(final FileObject baseFile)
Sets the base file to use when resolving relative URI.
voidsetBaseFile(final File baseFile)
Sets the base file to use when resolving relative URI.
voidsetCacheStrategy(final CacheStrategy fileCacheStrategy)

Set the cache strategy to use when dealing with file object data.

voidsetDefaultProvider(final FileProvider provider)
Sets the default provider.
voidsetFilesCache(final FilesCache filesCache)
Sets the filesCache implementation used to cache files
voidsetLogger(final Log log)
Sets the logger to use.
voidsetReplicator(final FileReplicator replicator)
Sets the file replicator to use.
voidsetTemporaryFileStore(final TemporaryFileStore tempFileStore)
Sets the temporary file store to use.
FileObjecttoFileObject(final File file)
Converts a local file into a FileObject .