Creating A ZIP File.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello. How does one create a (PK) zip file using the
System.IO.Compression.DeflateStream class, with multiple zip entries and all
that jazz? Thank you.
 
AFAIK, System.IO.Compression namespace doesn't support these features; it
only supports single file compression/decompression using GZip algorithm.
You might want to take a look at SharpZipLib however
(http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx).

Hello. How does one create a (PK) zip file using the
System.IO.Compression.DeflateStream class, with multiple zip entries and all
that jazz? Thank you.
 
Back
Top