DBFILEPROPERTIESLookupErrorTag
Objective-C
enum DBFILEPROPERTIESLookupErrorTag : NSInteger {}
Swift
@frozen enum DBFILEPROPERTIESLookupErrorTag : Int, @unchecked Sendable
The DBFILEPROPERTIESLookupErrorTag enum type represents the possible tag
states with which the DBFILEPROPERTIESLookupError union can exist.
-
(no description).
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorMalformedPathSwift
case malformedPath = 0 -
There is nothing at the given path.
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorNotFoundSwift
case notFound = 1 -
We were expecting a file, but the given path refers to something that isn’t a file.
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorNotFileSwift
case notFile = 2 -
We were expecting a folder, but the given path refers to something that isn’t a folder.
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorNotFolderSwift
case notFolder = 3 -
The file cannot be transferred because the content is restricted. For example, we might restrict a file due to legal requirements.
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorRestrictedContentSwift
case restrictedContent = 4 -
(no description).
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorOtherSwift
case other = 5
View on GitHub
DBFILEPROPERTIESLookupErrorTag Enumeration Reference