Instance Propertyswift-nio 2.72.0_NIOFileSystem
lastStatusChangeTime
The last time the status of the file was changed.
FileInfo.swift:76var lastStatusChangeTime: Timespec
Other members in extension
Types
struct GroupID
The numeric ID of a group.
struct Timespec
A time interval consisting of whole seconds and nanoseconds.
struct UserID
The numeric ID of a user.
Type members
init(platformSpecificStatus: CInterop.Stat
) Creates a
FileInfo
by deriving values from a platform-specific value.init(type: FileType, permissions: FilePermissions, size: Int64, userID: UserID, groupID: GroupID, lastAccessTime: Timespec, lastDataModificationTime: Timespec, lastStatusChangeTime: Timespec
) Creates a
FileInfo
from the provided values.
Instance members
var groupID: GroupID
Group ID of the file.
var lastAccessTime: Timespec
The last time the file was accessed.
var lastDataModificationTime: Timespec
The last time the files data was last changed.
var permissions: FilePermissions
Permissions currently set on the file.
var platformSpecificStatus: CInterop.Stat?
The information about the file returned from the filesystem, if available.
var size: Int64
The size of the file in bytes.
var type: FileType
The type of the file.
var userID: UserID
User ID of the file.