Overwrite Event

Fired whenever a file exists and may be overwritten.

Syntax

public event OnOverwriteHandler OnOverwrite;

public delegate void OnOverwriteHandler(object sender, GzipOverwriteEventArgs e);

public class GzipOverwriteEventArgs : EventArgs {
  public string Filename { get; set; }
  public bool Overwrite { get; set; }
}
Public Event OnOverwrite As OnOverwriteHandler

Public Delegate Sub OnOverwriteHandler(sender As Object, e As GzipOverwriteEventArgs)

Public Class GzipOverwriteEventArgs Inherits EventArgs
  Public Property Filename As String
  Public Property Overwrite As Boolean
End Class

Remarks

Overwrite is fired when a file is about to be overwritten, and would overwrite an existing file. The event is fired during decompression.

Filename contains the full name of the file, specified with its pathname.

Overwrite specifies whether or not the file will be overwritten. For Zip, Jar, and Tar, this is equal by default to the value of the OverwriteFiles property. For Gzip, this value defaults to true.

Either of the parameters may be changed when the event is fired. Changing the value of Overwrite will override the default behavior of the component, and cause the file to be overwritten or not overwritten, depending on the value set. If Filename is changed, the value of Overwrite will be ignored, and the file will be written with the specified name. If a file of the new name also exists this file will be silently overwritten.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks ZIP 2020 .NET Edition - Version 20.0 [Build 8300]