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

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!
 
W

Wayne Goodyear

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?
 
G

Guest

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.
 
E

esxmarkc

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.
 
G

Guest

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top