DBSHARINGMountFolderErrorTag
Objective-C
enum DBSHARINGMountFolderErrorTag : NSInteger {}
Swift
@frozen enum DBSHARINGMountFolderErrorTag : Int, @unchecked Sendable
The DBSHARINGMountFolderErrorTag
enum type represents the possible tag
states with which the DBSHARINGMountFolderError
union can exist.
-
(no description).
Declaration
Objective-C
DBSHARINGMountFolderErrorAccessError
Swift
case accessError = 0
-
Mounting would cause a shared folder to be inside another, which is disallowed.
Declaration
Objective-C
DBSHARINGMountFolderErrorInsideSharedFolder
Swift
case insideSharedFolder = 1
-
The current user does not have enough space to mount the shared folder.
Declaration
Objective-C
DBSHARINGMountFolderErrorInsufficientQuota
Swift
case insufficientQuota = 2
-
The shared folder is already mounted.
Declaration
Objective-C
DBSHARINGMountFolderErrorAlreadyMounted
Swift
case alreadyMounted = 3
-
The current user does not have permission to perform this action.
Declaration
Objective-C
DBSHARINGMountFolderErrorNoPermission
Swift
case noPermission = 4
-
The shared folder is not mountable. One example where this can occur is when the shared folder belongs within a team folder in the user’s Dropbox.
Declaration
Objective-C
DBSHARINGMountFolderErrorNotMountable
Swift
case notMountable = 5
-
(no description).
Declaration
Objective-C
DBSHARINGMountFolderErrorOther
Swift
case other = 6