Discuss this help topic in SecureBlackbox Forum
Defines how files in the archive should be replaced on filename coincidence.
Declaration
[C#/Java]
enum TSBArcReplaceMode { armAlways = 0, armNever = 1, armNewer = 2, armReportError = 3 };
[VB.NET]
Enum TSBArcReplaceMode
armAlways = 0
armNever = 1
armNewer = 2
armReportError = 3
End Enum
[Pascal]
TSBArcReplaceMode = (armAlways, armNever, armNewer, armReportError);
[C++]
typedef uint8_t TSBArcReplaceModeRaw;
typedef enum { armAlways = 0, armNever = 1, armNewer = 2, armReportError = 3 } TSBArcReplaceMode;
Replacement modes:
Declared in
.NET:
- Namespace: SBArcBase
- Assembly: SecureBlackbox.Zip
VCL:Java:
- Package: SecureBlackbox.Zip.jar
C++:
Discuss this help topic in SecureBlackbox Forum