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
DBSHARINGSharePathErrorIsFileSwift
case isFile = 0 -
We do not support sharing a folder inside a shared folder.
Declaration
Objective-C
DBSHARINGSharePathErrorInsideSharedFolderSwift
case insideSharedFolder = 1 -
We do not support shared folders that contain shared folders.
Declaration
Objective-C
DBSHARINGSharePathErrorContainsSharedFolderSwift
case containsSharedFolder = 2 -
We do not support shared folders that contain app folders.
Declaration
Objective-C
DBSHARINGSharePathErrorContainsAppFolderSwift
case containsAppFolder = 3 -
We do not support shared folders that contain team folders.
Declaration
Objective-C
DBSHARINGSharePathErrorContainsTeamFolderSwift
case containsTeamFolder = 4 -
We do not support sharing an app folder.
Declaration
Objective-C
DBSHARINGSharePathErrorIsAppFolderSwift
case isAppFolder = 5 -
We do not support sharing a folder inside an app folder.
Declaration
Objective-C
DBSHARINGSharePathErrorInsideAppFolderSwift
case insideAppFolder = 6 -
A public folder can’t be shared this way. Use a public link instead.
Declaration
Objective-C
DBSHARINGSharePathErrorIsPublicFolderSwift
case isPublicFolder = 7 -
A folder inside a public folder can’t be shared this way. Use a public link instead.
Declaration
Objective-C
DBSHARINGSharePathErrorInsidePublicFolderSwift
case insidePublicFolder = 8 -
Folder is already shared. Contains metadata about the existing shared folder.
Declaration
Objective-C
DBSHARINGSharePathErrorAlreadySharedSwift
case alreadyShared = 9 -
Path is not valid.
Declaration
Objective-C
DBSHARINGSharePathErrorInvalidPathSwift
case invalidPath = 10 -
We do not support sharing a Mac OS X package.
Declaration
Objective-C
DBSHARINGSharePathErrorIsOsxPackageSwift
case isOsxPackage = 11 -
We do not support sharing a folder inside a Mac OS X package.
Declaration
Objective-C
DBSHARINGSharePathErrorInsideOsxPackageSwift
case insideOsxPackage = 12 -
We do not support sharing the Vault folder.
Declaration
Objective-C
DBSHARINGSharePathErrorIsVaultSwift
case isVault = 13 -
We do not support sharing a folder inside a locked Vault.
Declaration
Objective-C
DBSHARINGSharePathErrorIsVaultLockedSwift
case isVaultLocked = 14 -
We do not support sharing the Family folder.
Declaration
Objective-C
DBSHARINGSharePathErrorIsFamilySwift
case isFamily = 15 -
(no description).
Declaration
Objective-C
DBSHARINGSharePathErrorOtherSwift
case other = 16
View on GitHub
DBSHARINGSharePathErrorTag Enumeration Reference