vote up 0 vote down star

I need to compress files in [*.zip] format in .NET 1.1. I don't want to use SharpZip for compression as I got random errors - "Access Denied" - when running it in .NET 1.1.

SharptZip will work properly only if I put the assembly on the GAC - which is not an option in my project. This is the problem. Check this: http://forums.asp.net/p/1139901/1839049.aspx#1839049

flag

50% accept rate
I followed the thread in the URI you provided. Do you not have the ability to put a strong named assembly into the GAC? per: support.microsoft.com/default.aspx?scid=kb%3ben-u… – Rob Sanders Oct 19 '08 at 13:18
No, I can. But the problem this is not an option in my project. I don't want to add the assembly into the GAC. This is the problem. SharptZip will work properly only if I put the assembly on the GAC - which is not an option in my project. – mnour Oct 19 '08 at 13:56

3 Answers

vote up 1 vote down check

You can use a command-line tool for zip. For example 7-Zip.

link|flag
vote up 0 vote down

You could grab the zlib dll and use .NET interop to call the compression functions (if i remember correctly, you could get away with just 2 calls, one for library initialization and one to compress the data). Beware that you'll run problems on 64-bit architectures if you use a 32-bit zlib dll and vice versa.

link|flag
vote up 0 vote down

You need to upgrade! .NET 1.1 is 6 years old now!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.