Default action to perform when a target file already exists.
(Default action can still be changed using the ProblemDetected event.)
Namespace:
Rebex.IO.CompressionAssembly: Rebex.Zip (in Rebex.Zip.dll) Version: 1.0.3844.0
Syntax
| C# |
|---|
public enum ArchiveActionOnExistingFile |
| Visual Basic (Declaration) |
|---|
Public Enumeration ArchiveActionOnExistingFile |
| Visual C++ |
|---|
public enum class ArchiveActionOnExistingFile |
Members
| Member name | Description | |
|---|---|---|
| ThrowException |
Existing files are to cause the whole operation to fail and raise an exception.
| |
| SkipAll |
Existing files are to be always skipped.
| |
| OverwriteAll |
Existing files are to be always overwritten.
| |
| OverwriteOlder |
Existing files are to be overwritten if they are older than source files.
| |
| OverwriteDifferentSize |
Existing files with different sizes are to be overwritten.
|