WriteStrategy

public enum WriteStrategy

Explorer Writing Strategy, when you called create function, you can provide writing strategy for it.

  • Will Skip existing file and only write file that doesn’t exist

    Declaration

    Swift

    case skippable
  • Report as what it is, if error is happended, will fail the operation

    Declaration

    Swift

    case safe
  • Will Overwrite anything, if file exist, will overwrite it with the new one

    Declaration

    Swift

    case overwrite