DBFILESWriteErrorTag
Objective-C
enum DBFILESWriteErrorTag : NSInteger {}
Swift
@frozen enum DBFILESWriteErrorTag : Int, @unchecked Sendable
The DBFILESWriteErrorTag enum type represents the possible tag states with
which the DBFILESWriteError 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
DBFILESWriteErrorMalformedPathSwift
case malformedPath = 0 -
Couldn’t write to the target path because there was something in the way.
Declaration
Objective-C
DBFILESWriteErrorConflictSwift
case conflict = 1 -
The user doesn’t have permissions to write to the target location.
Declaration
Objective-C
DBFILESWriteErrorNoWritePermissionSwift
case noWritePermission = 2 -
The user doesn’t have enough available space (bytes) to write more data.
Declaration
Objective-C
DBFILESWriteErrorInsufficientSpaceSwift
case insufficientSpace = 3 -
Dropbox will not save the file or folder because of its name.
Declaration
Objective-C
DBFILESWriteErrorDisallowedNameSwift
case disallowedName = 4 -
This endpoint cannot move or delete team folders.
Declaration
Objective-C
DBFILESWriteErrorTeamFolderSwift
case teamFolder = 5 -
This file operation is not allowed at this path.
Declaration
Objective-C
DBFILESWriteErrorOperationSuppressedSwift
case operationSuppressed = 6 -
There are too many write operations in user’s Dropbox. Please retry this request.
Declaration
Objective-C
DBFILESWriteErrorTooManyWriteOperationsSwift
case tooManyWriteOperations = 7 -
(no description).
Declaration
Objective-C
DBFILESWriteErrorOtherSwift
case other = 8
View on GitHub
DBFILESWriteErrorTag Enumeration Reference