DBSHARINGSharePathErrorTag
Objective-C
enum DBSHARINGSharePathErrorTag : NSInteger {}
Swift
@frozen enum DBSHARINGSharePathErrorTag : Int, @unchecked Sendable
The DBSHARINGSharePathErrorTag
enum type represents the possible tag
states with which the DBSHARINGSharePathError
union can exist.
-
A file is at the specified path.
Declaration
Objective-C
DBSHARINGSharePathErrorIsFile
Swift
case isFile = 0
-
We do not support sharing a folder inside a shared folder.
Declaration
Objective-C
DBSHARINGSharePathErrorInsideSharedFolder
Swift
case insideSharedFolder = 1
-
We do not support shared folders that contain shared folders.
Declaration
Objective-C
DBSHARINGSharePathErrorContainsSharedFolder
Swift
case containsSharedFolder = 2
-
We do not support shared folders that contain app folders.
Declaration
Objective-C
DBSHARINGSharePathErrorContainsAppFolder
Swift
case containsAppFolder = 3
-
We do not support shared folders that contain team folders.
Declaration
Objective-C
DBSHARINGSharePathErrorContainsTeamFolder
Swift
case containsTeamFolder = 4
-
We do not support sharing an app folder.
Declaration
Objective-C
DBSHARINGSharePathErrorIsAppFolder
Swift
case isAppFolder = 5
-
We do not support sharing a folder inside an app folder.
Declaration
Objective-C
DBSHARINGSharePathErrorInsideAppFolder
Swift
case insideAppFolder = 6
-
A public folder can’t be shared this way. Use a public link instead.
Declaration
Objective-C
DBSHARINGSharePathErrorIsPublicFolder
Swift
case isPublicFolder = 7
-
A folder inside a public folder can’t be shared this way. Use a public link instead.
Declaration
Objective-C
DBSHARINGSharePathErrorInsidePublicFolder
Swift
case insidePublicFolder = 8
-
Folder is already shared. Contains metadata about the existing shared folder.
Declaration
Objective-C
DBSHARINGSharePathErrorAlreadyShared
Swift
case alreadyShared = 9
-
Path is not valid.
Declaration
Objective-C
DBSHARINGSharePathErrorInvalidPath
Swift
case invalidPath = 10
-
We do not support sharing a Mac OS X package.
Declaration
Objective-C
DBSHARINGSharePathErrorIsOsxPackage
Swift
case isOsxPackage = 11
-
We do not support sharing a folder inside a Mac OS X package.
Declaration
Objective-C
DBSHARINGSharePathErrorInsideOsxPackage
Swift
case insideOsxPackage = 12
-
We do not support sharing the Vault folder.
Declaration
Objective-C
DBSHARINGSharePathErrorIsVault
Swift
case isVault = 13
-
We do not support sharing a folder inside a locked Vault.
Declaration
Objective-C
DBSHARINGSharePathErrorIsVaultLocked
Swift
case isVaultLocked = 14
-
We do not support sharing the Family folder.
Declaration
Objective-C
DBSHARINGSharePathErrorIsFamily
Swift
case isFamily = 15
-
(no description).
Declaration
Objective-C
DBSHARINGSharePathErrorOther
Swift
case other = 16