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
DBFILESLookupErrorMalformedPathSwift
case malformedPath = 0 - 
                  
                  
There is nothing at the given path.
Declaration
Objective-C
DBFILESLookupErrorNotFoundSwift
case notFound = 1 - 
                  
                  
We were expecting a file, but the given path refers to something that isn’t a file.
Declaration
Objective-C
DBFILESLookupErrorNotFileSwift
case notFile = 2 - 
                  
                  
We were expecting a folder, but the given path refers to something that isn’t a folder.
Declaration
Objective-C
DBFILESLookupErrorNotFolderSwift
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
DBFILESLookupErrorRestrictedContentSwift
case restrictedContent = 4 - 
                  
                  
This operation is not supported for this content type.
Declaration
Objective-C
DBFILESLookupErrorUnsupportedContentTypeSwift
case unsupportedContentType = 5 - 
                  
                  
The given path is locked.
Declaration
Objective-C
DBFILESLookupErrorLockedSwift
case locked = 6 - 
                  
                  
(no description).
Declaration
Objective-C
DBFILESLookupErrorOtherSwift
case other = 7 
View on GitHub
        DBFILESLookupErrorTag Enumeration Reference