FileInfo$Typings extension
- on
Properties
- atime ↔ DateTime?
-
Available on FileInfo, provided by the FileInfo$Typings extension
The last access time of the file. This corresponds to theatime
field fromstat
on Unix andftLastAccessTime
on Windows. This may not be available on all platforms.getter/setter pair - birthtime ↔ DateTime?
-
Available on FileInfo, provided by the FileInfo$Typings extension
The creation time of the file. This corresponds to thebirthtime
field fromstat
on Mac/BSD andftCreationTime
on Windows. This may not be available on all platforms.getter/setter pair - blksize ↔ num?
-
Available on FileInfo, provided by the FileInfo$Typings extension
Blocksize for filesystem I/O.getter/setter pair - blocks ↔ num?
-
Available on FileInfo, provided by the FileInfo$Typings extension
Number of blocks allocated to the file, in 512-byte units.getter/setter pair - dev ↔ num
-
Available on FileInfo, provided by the FileInfo$Typings extension
ID of the device containing the file.getter/setter pair - gid ↔ num?
-
Available on FileInfo, provided by the FileInfo$Typings extension
Group ID of the owner of this file.getter/setter pair - ino ↔ num?
-
Available on FileInfo, provided by the FileInfo$Typings extension
Inode number.getter/setter pair - isBlockDevice ↔ bool?
-
Available on FileInfo, provided by the FileInfo$Typings extension
True if this is info for a block device.getter/setter pair - isCharDevice ↔ bool?
-
Available on FileInfo, provided by the FileInfo$Typings extension
True if this is info for a char device.getter/setter pair - isDirectory ↔ bool
-
Available on FileInfo, provided by the FileInfo$Typings extension
True if this is info for a regular directory. Mutually exclusive toFileInfo.isFile
andFileInfo.isSymlink
.getter/setter pair - isFifo ↔ bool?
-
Available on FileInfo, provided by the FileInfo$Typings extension
True if this is info for a fifo.getter/setter pair - isFile ↔ bool
-
Available on FileInfo, provided by the FileInfo$Typings extension
True if this is info for a regular file. Mutually exclusive toFileInfo.isDirectory
andFileInfo.isSymlink
.getter/setter pair - isSocket ↔ bool?
-
Available on FileInfo, provided by the FileInfo$Typings extension
True if this is info for a socket.getter/setter pair - isSymlink ↔ bool
-
Available on FileInfo, provided by the FileInfo$Typings extension
True if this is info for a symlink. Mutually exclusive toFileInfo.isFile
andFileInfo.isDirectory
.getter/setter pair - mode ↔ num?
-
Available on FileInfo, provided by the FileInfo$Typings extension
UNSTABLE*: Match behavior with Go on Windows formode
.getter/setter pair - mtime ↔ DateTime?
-
Available on FileInfo, provided by the FileInfo$Typings extension
The last modification time of the file. This corresponds to themtime
field fromstat
on Linux/Mac OS andftLastWriteTime
on Windows. This may not be available on all platforms.getter/setter pair - nlink ↔ num?
-
Available on FileInfo, provided by the FileInfo$Typings extension
Number of hard links pointing to this file.getter/setter pair - rdev ↔ num?
-
Available on FileInfo, provided by the FileInfo$Typings extension
Device ID of this file.getter/setter pair - size ↔ num
-
Available on FileInfo, provided by the FileInfo$Typings extension
The size of the file, in bytes.getter/setter pair - uid ↔ num?
-
Available on FileInfo, provided by the FileInfo$Typings extension
User ID of the owner of this file.getter/setter pair