public interface FileProps
Represents properties of a file on the file system.
- Author:
- Tim Fox
-
Method Summary
Modifier and TypeMethodDescriptionlongThe date the file was createdbooleanIs the file a directory?booleanisOther()Is the file some other type?booleanIs the file a regular file?booleanIs the file a symbolic link?longThe date the file was last accessedlongThe date the file was last modifiedlongsize()The size of the file, in bytes
-
Method Details
-
creationTime
long creationTime()The date the file was created -
lastAccessTime
long lastAccessTime()The date the file was last accessed -
lastModifiedTime
long lastModifiedTime()The date the file was last modified -
isDirectory
boolean isDirectory()Is the file a directory? -
isOther
boolean isOther()Is the file some other type? (I.e. not a directory, regular file or symbolic link) -
isRegularFile
boolean isRegularFile()Is the file a regular file? -
isSymbolicLink
boolean isSymbolicLink()Is the file a symbolic link? -
size
long size()The size of the file, in bytes
-