EndFile Event

Fired after each file is processed.

Syntax

public event OnEndFileHandler OnEndFile;

public delegate void OnEndFileHandler(object sender, TarEndFileEventArgs e);

public class TarEndFileEventArgs : EventArgs {
  public int Index { get; }
}
Public Event OnEndFile As OnEndFileHandler

Public Delegate Sub OnEndFileHandler(sender As Object, e As TarEndFileEventArgs)

Public Class TarEndFileEventArgs Inherits EventArgs
  Public ReadOnly Property Index As Integer
End Class

Remarks

EndFile is fired after each file is processed by the compressor or decompressor, as appropriate. Index contains the array index of the file processed, and the CompressedName, DecompressedName, CompressedSize, and DecompressedSize fields in the Files collection for this index contain more detailed information about the file processed.

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