DBFILESLookupErrorTag
Objective-C
enum DBFILESLookupErrorTag : NSInteger {}
Swift
@frozen enum DBFILESLookupErrorTag : Int, @unchecked Sendable
The DBFILESLookupErrorTag
enum type represents the possible tag states
with which the DBFILESLookupError
union can exist.
-
The given path does not satisfy the required path format. Please refer to the Path formats documentation https://www.dropbox.com/developers/documentation/http/documentation#path-formats for more information.
Declaration
Objective-C
DBFILESLookupErrorMalformedPath
Swift
case malformedPath = 0
-
There is nothing at the given path.
Declaration
Objective-C
DBFILESLookupErrorNotFound
Swift
case notFound = 1
-
We were expecting a file, but the given path refers to something that isn’t a file.
Declaration
Objective-C
DBFILESLookupErrorNotFile
Swift
case notFile = 2
-
We were expecting a folder, but the given path refers to something that isn’t a folder.
Declaration
Objective-C
DBFILESLookupErrorNotFolder
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
DBFILESLookupErrorRestrictedContent
Swift
case restrictedContent = 4
-
This operation is not supported for this content type.
Declaration
Objective-C
DBFILESLookupErrorUnsupportedContentType
Swift
case unsupportedContentType = 5
-
The given path is locked.
Declaration
Objective-C
DBFILESLookupErrorLocked
Swift
case locked = 6
-
(no description).
Declaration
Objective-C
DBFILESLookupErrorOther
Swift
case other = 7