ZIP in .NET  
Author Message
binoj





PostPosted: Fri Apr 21 00:08:00 CDT 2006 Top

Dotnet >> ZIP in .NET Hi..

My coleagues-programmers are coping with a problem. We want to find a way
to export our project (folder structure) into a single file.
We tought ZIP would be suitable for also utilizing a light compression.
Is there any free code or free library for C# that would support this
zipping, but including spanning, in case the date exceedes 2 GBs?
It must support the spanning. Withuout it, it is meaningless.

Thanks,

Kris

DotNet252  
 
 
Marc





PostPosted: Fri Apr 21 00:08:00 CDT 2006 Top

Dotnet >> ZIP in .NET >We tought ZIP would be suitable for also utilizing a light compression.
>Is there any free code or free library for C# that would support this
>zipping, but including spanning, in case the date exceedes 2 GBs?
>It must support the spanning. Withuout it, it is meaningless.

The only *FREE* ZIP Library I know of is #Zip at
http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx

However, their website prominently displays a banner saying that
developers with advanced ZIP needs should go look at XCeed ZIP
http://www.xceedsoft.com/products/ZipNet/ if they had advanced ZIP
needs (like support for streaming). It's $300 - but consider having to
write this yourself - you'd spent a lot more trying to achieve the
same thing yourself !

There ain't no such thing as a free lunch! :-)

Marc

 
 
Kevin





PostPosted: Fri Apr 21 05:52:56 CDT 2006 Top

Dotnet >> ZIP in .NET If you're using .Net platform 2.0, look at the System.IO.Compression
namespace. It has 2 classes, DeflateStream and GZipStream, which are useful
for compression and decompression.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Kris" <EMail@HideDomain.com> wrote in message
news:EMail@HideDomain.com...
> Hi..
>
> My coleagues-programmers are coping with a problem. We want to find a way
> to export our project (folder structure) into a single file.
> We tought ZIP would be suitable for also utilizing a light compression.
> Is there any free code or free library for C# that would support this
> zipping, but including spanning, in case the date exceedes 2 GBs?
> It must support the spanning. Withuout it, it is meaningless.
>
> Thanks,
>
> Kris