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
DBFILEPROPERTIESLookupErrorMalformedPath
Swift
case malformedPath = 0
-
There is nothing at the given path.
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorNotFound
Swift
case notFound = 1
-
We were expecting a file, but the given path refers to something that isn’t a file.
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorNotFile
Swift
case notFile = 2
-
We were expecting a folder, but the given path refers to something that isn’t a folder.
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorNotFolder
Swift
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
DBFILEPROPERTIESLookupErrorRestrictedContent
Swift
case restrictedContent = 4
-
(no description).
Declaration
Objective-C
DBFILEPROPERTIESLookupErrorOther
Swift
case other = 5