WriteError

public enum WriteError : CustomStringConvertible, JSONRepresentable

The WriteError union

  • 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

    Swift

    case malformedPath(String?)
  • Couldn’t write to the target path because there was something in the way.

    Declaration

    Swift

    case conflict(Files.WriteConflictError)
  • The user doesn’t have permissions to write to the target location.

    Declaration

    Swift

    case noWritePermission
  • The user doesn’t have enough available space (bytes) to write more data.

    Declaration

    Swift

    case insufficientSpace
  • Dropbox will not save the file or folder because of its name.

    Declaration

    Swift

    case disallowedName
  • This endpoint cannot move or delete team folders.

    Declaration

    Swift

    case teamFolder
  • This file operation is not allowed at this path.

    Declaration

    Swift

    case operationSuppressed
  • There are too many write operations in user’s Dropbox. Please retry this request.

    Declaration

    Swift

    case tooManyWriteOperations
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }