Package gw.fs.physical
Interface IFileMetadata
-
- All Known Implementing Classes:
FastFileMetadata
,GenericFileMetadata
,Win32FileMetadata
public interface IFileMetadata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
exists()
boolean
isDir()
boolean
isFile()
long
lastModifiedTime()
long
length()
String
name()
-
-
-
Method Detail
-
name
String name()
-
isDir
boolean isDir()
-
isFile
boolean isFile()
-
exists
boolean exists()
-
lastModifiedTime
long lastModifiedTime()
-
length
long length()
-
-