Creates a ZipBlockWriter using the specified file on the local filesystem.
Creates a ZipBlockWriter using the provided OutputStream. Please note that this OutputStream must be attached to a conduit implementing the IConduit.Seek interface.
Finalises the archive, writes out the central directory, and closes the output stream.
Adds a file using the contents of the given array to the archive.
Transfers a file from another archive into this archive. Note that this method will not perform any compression: whatever compression was applied to the file originally will be preserved.
Adds a file from the local filesystem to the archive.
Adds a file using the contents of the given InputStream to the archive.
This property allows you to control what compression method should be used for files being added to the archive.
The ZipBlockWriter class is used to create a Zip archive. It uses a writing iterator interface.
Note that this class can only be used with output streams which can be freely seeked.