WriteConflictError

public enum WriteConflictError : CustomStringConvertible, JSONRepresentable

The WriteConflictError union

  • There’s a file in the way.

    Declaration

    Swift

    case file
  • There’s a folder in the way.

    Declaration

    Swift

    case folder
  • There’s a file at an ancestor path, so we couldn’t create the required parent folders.

    Declaration

    Swift

    case fileAncestor
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }