Looking for a managed class to work with .zip and .cab files

  • Thread starter Thread starter Wayne Goodyear
  • Start date Start date
W

Wayne Goodyear

Sorry for the crosspost. I'm looking for a managed class library that allows
decompressing .zip and/or .cab files. Preferably free. If it supports the
..NET Compact Framework that will be even better. thanks!
 
How do you build SharpZipLb in Compact Framework 2.0? I get all sorts of
errors when trying to compile it. Is there a doc somewhere that explains how
to take the desktop solution and port it to compact framework 2.0 and how to
resolve the errors?
 
Unless I misunderstood your question, I don't think you need to look outside
of the .NET Framework BCL. See System.IO.Compression.GZipStream class.
According to the SDK it is supported in Compact Framework 2.0.
 
I can't get these references to resolve in Compact Framework 2.0. even
though it says they are supported.

GZipStream would work fine for my appilcation but if I try to add
Using System.IO.Compression;

It fails. Any Ideas?
Mark C.
 
It's unsupported in the CF.

-Chris



I can't get these references to resolve in Compact Framework 2.0. even
though it says they are supported.

GZipStream would work fine for my appilcation but if I try to add
Using System.IO.Compression;

It fails. Any Ideas?
Mark C.
 
Back
Top