Specifies the reaction to resolve the current problem that occurred during a multi-file operation.
Namespace:
Rebex.IO
Assembly:
Rebex.Common (in Rebex.Common.dll)
Syntax
| Visual Basic |
|---|
Public Enumeration TransferProblemReaction |
| C# |
|---|
public enum TransferProblemReaction |
Members
| Member name | Description | |
|---|---|---|
| Cancel |
Cancel the whole operation. An exception with the OperationCanceled value is thrown.
| |
| Fail |
Cancel the whole operation. An exception is thrown.
| |
| Skip |
Skip the current problematic item.
| |
| Retry |
Retry the current operation again.
| |
| Overwrite |
Overwrite target file with the same name.
| |
| Rename |
Transfer the source file to a different name.
| |
| Resume |
Resume target file.
| |
| FollowLink |
Resolve the symbolic link.
|