Dart.PowerTCP.Zip Namespace > Archive Class : Overwrite Property |
<DefaultValueAttribute()> <CategoryAttribute("Archive")> <DescriptionAttribute("Specifies whether to overwrite files when unzipping.")> Public Property Overwrite As Overwrite
Dim instance As Archive Dim value As Overwrite instance.Overwrite = value value = instance.Overwrite
[DefaultValue()] [Category("Archive")] [Description("Specifies whether to overwrite files when unzipping.")] public Overwrite Overwrite {get; set;}
[DefaultValue()] [Category("Archive")] [Description("Specifies whether to overwrite files when unzipping.")] public: __property Overwrite get_Overwrite(); public: __property void set_Overwrite( Overwrite value );
[DefaultValue()] [Category("Archive")] [Description("Specifies whether to overwrite files when unzipping.")] public: property Overwrite Overwrite { Overwrite get(); void set ( Overwrite value); }
This property is only used when the destination parameter of the Archive.Unzip or Archive.QuickUnzip specifies a destination directory.
This property is only used for decompression.
' 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");