Skip to content

alias AttributeName


  • namespace: LuaFileSystem
(alias) AttributeName = ("dev"|"ino"|"mode"|"nlink"|"uid"|"gid"|"rdev"|"access"|"modification"|"change"...)
    | "dev" -- on Unix systems, this represents the device that the inode resides on. On Windows systems, represents the drive number of the disk containing the file
    | "ino" -- on Unix systems, this represents the inode number. On Windows systems this has no meaning
    | "mode" -- string representing the associated protection mode (the values could be file, directory, link, socket, named pipe, char device, block device or other)
    | "nlink" -- number of hard links to the file
    | "uid" -- user-id of owner (Unix only, always 0 on Windows)
    | "gid" -- group-id of owner (Unix only, always 0 on Windows)
    | "rdev" -- on Unix systems, represents the device type, for special file inodes. On Windows systems represents the same as dev
    | "access" -- time of last access
    | "modification" -- time of last data modification
    | "change" -- time of last file status change
    | "size" -- file size, in bytes
    | "permissions" -- file permissions string
    | "blocks" -- block allocated for file; (Unix only)
    | "blksize" -- optimal file system I/O blocksize; (Unix only)