Package gw.fs.physical
Interface IPhysicalFileSystem
-
- All Known Implementing Classes:
AbstractCachingPhysicalFileSystem
,FastPhysicalFileSystem
,FullCachingPhysicalFileSystem
,FuzzyTimestampCachingPhysicalFileSystem
,GenericPhysicalFileSystem
,Win32PhysicalFileSystem
public interface IPhysicalFileSystem
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clearAllCaches()
void
clearDirectoryCaches(ResourcePath dirPath)
boolean
delete(ResourcePath filePath)
boolean
exists(ResourcePath filePath)
IFileMetadata
getFileMetadata(ResourcePath filePath)
List<? extends IFileMetadata>
listFiles(ResourcePath directoryPath)
boolean
mkdir(ResourcePath dirPath)
-
-
-
Method Detail
-
listFiles
List<? extends IFileMetadata> listFiles(ResourcePath directoryPath)
-
getFileMetadata
IFileMetadata getFileMetadata(ResourcePath filePath)
-
exists
boolean exists(ResourcePath filePath)
-
delete
boolean delete(ResourcePath filePath)
-
mkdir
boolean mkdir(ResourcePath dirPath)
-
clearDirectoryCaches
void clearDirectoryCaches(ResourcePath dirPath)
-
clearAllCaches
void clearAllCaches()
-
-