Occurs when file is being extracted from archive.
[C#]
public event OnExtractFileDelegate OnExtractFile;
public delegate void OnExtractFileDelegate(object sender, string fileName, long fileAttr, string comment);
[VB.NET]
Public Event OnExtractFile As OnExtractFileDelegate
Public Delegate Sub OnExtractFileDelegate(ByVal sender As Object, ByVal fileName As String, ByVal fileAttr As Long, ByVal comment As String)
Description
Write an OnExtractFile event handler to override default file name or change its attributes before extracting.
The event is fired when ExtractFiles is called.
The Sender parameter is the object whose event handler is called.
FileName specifies the name of the file being extracted.
FileAttr specifies extracted file attributes.
Comment parameter indicates extracted file comment.