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 { get }
-
Entry’s type.
Declaration
Swift
var type: ContainerEntryType { get }
-
Entry’s data size (can be
nil
if either data or size aren’t available).Declaration
Swift
var size: Int? { get }
-
Entry’s last access time (
nil
, if not available).Declaration
Swift
var accessTime: Date? { get }
-
Entry’s creation time (
nil
, if not available).Declaration
Swift
var creationTime: Date? { get }
-
Entry’s last modification time (
nil
, if not available).Declaration
Swift
var modificationTime: Date? { get }
-
Entry’s permissions in POSIX format (
nil
, if not available).Declaration
Swift
var permissions: Permissions? { get }