DBFILESRelocationErrorTag
Objective-C
enum DBFILESRelocationErrorTag : NSInteger {}
Swift
@frozen enum DBFILESRelocationErrorTag : Int, @unchecked Sendable
The DBFILESRelocationErrorTag
enum type represents the possible tag states
with which the DBFILESRelocationError
union can exist.
-
(no description).
Declaration
Objective-C
DBFILESRelocationErrorFromLookup
Swift
case fromLookup = 0
-
(no description).
Declaration
Objective-C
DBFILESRelocationErrorFromWrite
Swift
case fromWrite = 1
-
(no description).
Declaration
Objective-C
DBFILESRelocationErrorTo
Swift
case to = 2
-
Shared folders can’t be copied.
Declaration
Objective-C
DBFILESRelocationErrorCantCopySharedFolder
Swift
case cantCopySharedFolder = 3
-
Your move operation would result in nested shared folders. This is not allowed.
Declaration
Objective-C
DBFILESRelocationErrorCantNestSharedFolder
Swift
case cantNestSharedFolder = 4
-
You cannot move a folder into itself.
Declaration
Objective-C
DBFILESRelocationErrorCantMoveFolderIntoItself
Swift
case cantMoveFolderIntoItself = 5
-
The operation would involve more than 10,000 files and folders.
Declaration
Objective-C
DBFILESRelocationErrorTooManyFiles
Swift
case tooManyFiles = 6
-
There are duplicated/nested paths among
fromPath
inDBFILESRelocationArg
andtoPath
inDBFILESRelocationArg
.Declaration
Objective-C
DBFILESRelocationErrorDuplicatedOrNestedPaths
Swift
case duplicatedOrNestedPaths = 7
-
Your move operation would result in an ownership transfer. You may reissue the request with the field
allowOwnershipTransfer
inDBFILESRelocationArg
to true.Declaration
Objective-C
DBFILESRelocationErrorCantTransferOwnership
Swift
case cantTransferOwnership = 8
-
The current user does not have enough space to move or copy the files.
Declaration
Objective-C
DBFILESRelocationErrorInsufficientQuota
Swift
case insufficientQuota = 9
-
Something went wrong with the job on Dropbox’s end. You’ll need to verify that the action you were taking succeeded, and if not, try again. This should happen very rarely.
Declaration
Objective-C
DBFILESRelocationErrorInternalError
Swift
case internalError = 10
-
Can’t move the shared folder to the given destination.
Declaration
Objective-C
DBFILESRelocationErrorCantMoveSharedFolder
Swift
case cantMoveSharedFolder = 11
-
Some content cannot be moved into Vault under certain circumstances, see detailed error.
Declaration
Objective-C
DBFILESRelocationErrorCantMoveIntoVault
Swift
case cantMoveIntoVault = 12
-
Some content cannot be moved into the Family Room folder under certain circumstances, see detailed error.
Declaration
Objective-C
DBFILESRelocationErrorCantMoveIntoFamily
Swift
case cantMoveIntoFamily = 13
-
(no description).
Declaration
Objective-C
DBFILESRelocationErrorOther
Swift
case other = 14