Package | Description |
---|---|
jfilesyslib |
This package contains the FileSystem and the FullFileSystem interface.
|
jfilesyslib.data |
This package contains data classes which are being used to transfer data between the driver and your file system.
|
jfilesyslib.filesystems |
This package contains some demo file systems, which may be used by you.
|
Modifier and Type | Method and Description |
---|---|
abstract EntityInfo |
FileSystem.getFileMetaData(java.lang.String path)
Returns some meta data about the path.
|
Modifier and Type | Method and Description |
---|---|
abstract java.lang.Iterable<EntityInfo> |
FileSystem.listDirectory(java.lang.String path)
Reads a given directory and returns an iterator.
|
Modifier and Type | Class and Description |
---|---|
class |
DirectoryInfo
This class should be used to model directories
|
class |
FileInfo
This class should be used to model files
|
class |
SymbolicLinkInfo
This class should be used to model symbolic links
|
Modifier and Type | Method and Description |
---|---|
EntityInfo |
MergeDirectlyFs.getFileMetaData(java.lang.String path) |
EntityInfo |
MemoryFs.getFileMetaData(java.lang.String path) |
EntityInfo |
MirrorFs.getFileMetaData(java.lang.String path) |
EntityInfo |
LoggingFs.getFileMetaData(java.lang.String path) |
EntityInfo |
ExtendedSupportFs.getFileMetaData(java.lang.String path) |
EntityInfo |
CachingFs.getFileMetaData(java.lang.String path) |
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<EntityInfo> |
MergeDirectlyFs.listDirectory(java.lang.String path) |
java.lang.Iterable<EntityInfo> |
MemoryFs.listDirectory(java.lang.String path) |
java.lang.Iterable<EntityInfo> |
MirrorFs.listDirectory(java.lang.String path) |
java.lang.Iterable<EntityInfo> |
LoggingFs.listDirectory(java.lang.String path) |
java.lang.Iterable<EntityInfo> |
ExtendedSupportFs.listDirectory(java.lang.String path) |
java.lang.Iterable<EntityInfo> |
CachingFs.listDirectory(java.lang.String path) |