Occurs when file is being extracted from archive.
type TZFOnExtractFileEvent = procedure (Sender: TObject; var FileName: string; var FileAttr: LongWord; const Comment: String) of object;
property OnExtractFile: TZFOnExtractFileEvent;
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.
|
|