Dart.PowerTCP.Zip Namespace : Overwrite Enumeration |
<DescriptionAttribute("Enumerate the overwrite choices that Dart Zip component currently supports. ")> <CategoryAttribute("Enumeration")> Public Enum Overwrite Inherits System.Enum
Dim instance As Overwrite
[Description("Enumerate the overwrite choices that Dart Zip component currently supports. ")] [Category("Enumeration")] public enum Overwrite : System.Enum
[Description("Enumerate the overwrite choices that Dart Zip component currently supports. ")] [Category("Enumeration")] __value public enum Overwrite : public System.Enum
[Description("Enumerate the overwrite choices that Dart Zip component currently supports. ")] [Category("Enumeration")] public enum class Overwrite : public System.Enum
Member | Description |
---|---|
Always | Overwrite all files. |
Never | Do not overwrite any files. |
This enumeration is used by the "unzip"-related Archive methods to specify under what conditions files with conflicting file names should be overwritten.
' Be sure to import the namespace by putting "Imports Dart.PowerTCP.Zip" ' at the top of your class. ' Preserve the path when unzipping Archive1.PreservePath = True ' Overwrite any existing files Archive1.Overwrite = Overwrite.Always ' Unzip all the files to c:\test Archive1.QuickUnzip("c:\test.zip", "c:\Test")
// Be sure to import the namespace by putting "using Dart.PowerTCP.Zip;" // at the top of your class. // Preserve the path when unzipping archive1.PreservePath = true; // Overwrite any existing files archive1.Overwrite = Overwrite.Always; // Unzip all the files to c:\test archive1.QuickUnzip("c:\\test.zip", "c:\\Test");
System.Object
System.ValueType
System.Enum
Dart.PowerTCP.Zip.Overwrite