interface FileProps
Represents properties of a file on the file system.
Author
Tim Fox
abstract fun creationTime(): Long
The date the file was created |
|
abstract fun isDirectory(): Boolean
Is the file a directory? |
|
abstract fun isOther(): Boolean
Is the file some other type? (I.e. not a directory, regular file or symbolic link) |
|
abstract fun isRegularFile(): Boolean
Is the file a regular file? |
|
abstract fun isSymbolicLink(): Boolean
Is the file a symbolic link? |
|
abstract fun lastAccessTime(): Long
The date the file was last accessed |
|
abstract fun lastModifiedTime(): Long
The date the file was last modified |
|
abstract fun size(): Long
The size of the file, in bytes |