stat
Implements the stat module.
Aliases:
-
S_IFMT = 61440
: Bits that determine the file type. -
S_IFDIR = 16384
: Bits that determine the directory. -
S_IFCHR = 8192
: Bits that determine the char device. -
S_IFBLK = 24576
: Bits that determine the block device. -
S_IFREG = 32768
: Bits that determine the regular file. -
S_IFIFO = 4096
: Bits that determine the fifo. -
S_IFLNK = 40960
: Bits that determine the symlink. -
S_IFSOCK = 49152
: Bits that determine the socket.
S_ISLNK
S_ISLNK[intable: Intable](mode: intable) -> Bool
Returns True if the mode is a symlink.
Paramete