Enum FileConflictResolution
A value indicating how to handle a file conflict in the file system.
Namespace: Gorgon.IO
Assembly: Gorgon.FileSystem.dll
Syntax
public enum FileConflictResolution
Fields
Name | Description |
---|---|
Cancel | The operation should be canceled. |
Exception | An exception should be thrown. |
Overwrite | The operation should overwrite the destination. |
OverwriteAll | The operation should overwrite the destination, and this should be the default for all conflicts from this point forward. |
Rename | The operation should rename the destination. |
RenameAll | The operation should rename the destination, and this should be the default for all conflicts from this point forward. |
Skip | The operation should skip this item. |
SkipAll | The operation should skip this item and all conflicting items after. |