TarOutputStream.PutNextEntry Method

Put an entry on the output stream. This writes the entry's header record and positions the output stream for writing the contents of the entry. Once this method is called, the stream is ready for calls to write() to write the entry's contents. Once the contents are written, closeEntry() MUST be called to ensure that all buffered data is completely written to the output stream.

[Visual Basic]
Public Sub PutNextEntry( _
   ByVal entry As ICSharpCode.SharpZipLib.Tar.TarEntry _
)
[C#]
public void PutNextEntry(
   TarEntry entry
);

Parameters

entry

The TarEntry to be written to the archive.

See Also

TarOutputStream Class | TarOutputStream Members | ICSharpCode.SharpZipLib.Tar Namespace