NextTarFileEventArgs C# Reference Documentation
NextTarFileEventArgs
Current Version: 9.5.0.72
Provides data for the OnNextTarFileEvent.
Properties
FileName
public string FileName {get; }
The name of the next file to be written to a TAR archive.
topFileSize
public long FileSize {get; }
The size of the next file to be written to a TAR archive.
topIsDirectory
public bool IsDirectory {get; }
If true, then the next file to be written to the TAR archive is a directory entry.
topSkip
public bool Skip {get; set; }
Set to true to skip this file from being written to the TAR archive.
top