Data type FileInfo
access this type via: io.FileSystem (uses)
Data type to represent information about a filesystem element.
Constants
byte TYPE_FILE Possible value of the 'type' field, indicating that this element is a regular file.
byte TYPE_DIR Possible value of the 'type' field, indicating that this element is a directory.
Fields
byte type The type of this filesystem element (e.g. a file or directory).
int size The size of this filesystem element on disk, if it is a regular file (this field will be zero for directories).
DateTime modified The last-modified time of this filesystem element on disk, if it is a regular file.