# Stats

Object describing file state

# attribute

# string mode

File type and access permissions, corresponding to POSIX state.st_mode

# number size

File size, Unit: B, corresponding POSIX state.st_size

# number lastAccessedTime

Last time a file was accessed or executed, UNIX Timestamp, corresponding POSIX state.st_atime

# number lastModifiedTime

When the file was last modified, UNIX Timestamp, corresponding POSIX state.st_mtime

# method

# boolean Stats.isDirectory()

Determines if the current file is a directory

# boolean Stats.isFile()

Determines if the current file is a normal file