ContainerEntryInfo
public protocol ContainerEntryInfo
A type that provides access to information about an entry from the container.
-
Entry’s name.
Declaration
Swift
var name: String -
Entry’s type.
Declaration
Swift
var type: ContainerEntryType -
Entry’s data size (can be
nilif either data or size aren’t available).Declaration
Swift
var size: Int? -
Entry’s last access time (
nil, if not available).Declaration
Swift
var accessTime: Date? -
Entry’s creation time (
nil, if not available).Declaration
Swift
var creationTime: Date? -
Entry’s last modification time (
nil, if not available).Declaration
Swift
var modificationTime: Date? -
Entry’s permissions in POSIX format (
nil, if not available).Declaration
Swift
var permissions: Permissions?
View on GitHub
ContainerEntryInfo Protocol Reference