Event
public enum Event
Encapsulates changes to the file-system object.
-
Access to the file-system object was revoked.
Declaration
Swift
case accessWasRevoked(URL)
-
The file-system object data changed.
Declaration
Swift
case dataDidChange(URL)
-
The file-system object link count changed.
Declaration
Swift
case linkCountDidChange(URL)
-
The file-system object metadata changed.
Declaration
Swift
case metadataDidChange(URL)
-
The file-system object changed in size.
Declaration
Swift
case sizeDidChange(URL)
-
The file-system object was deleted from the namespace.
Declaration
Swift
case wasDeleted(URL)
-
The file-system object was renamed in the namespace. The first URL in the associated value is the original file path, the second is the renamed file path.
Declaration
Swift
case wasRenamed(URL, URL)