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
DBFILESWriteErrorMalformedPath
Swift
case malformedPath = 0
-
Couldn’t write to the target path because there was something in the way.
Declaration
Objective-C
DBFILESWriteErrorConflict
Swift
case conflict = 1
-
The user doesn’t have permissions to write to the target location.
Declaration
Objective-C
DBFILESWriteErrorNoWritePermission
Swift
case noWritePermission = 2
-
The user doesn’t have enough available space (bytes) to write more data.
Declaration
Objective-C
DBFILESWriteErrorInsufficientSpace
Swift
case insufficientSpace = 3
-
Dropbox will not save the file or folder because of its name.
Declaration
Objective-C
DBFILESWriteErrorDisallowedName
Swift
case disallowedName = 4
-
This endpoint cannot move or delete team folders.
Declaration
Objective-C
DBFILESWriteErrorTeamFolder
Swift
case teamFolder = 5
-
This file operation is not allowed at this path.
Declaration
Objective-C
DBFILESWriteErrorOperationSuppressed
Swift
case operationSuppressed = 6
-
There are too many write operations in user’s Dropbox. Please retry this request.
Declaration
Objective-C
DBFILESWriteErrorTooManyWriteOperations
Swift
case tooManyWriteOperations = 7
-
(no description).
Declaration
Objective-C
DBFILESWriteErrorOther
Swift
case other = 8