Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# with SharpZipLib - Compatibility of SharpZipLib with Winzip and XP?

Tags:

c#

sharpziplib

I am using the CSharpZipLib library to automatically zip some files. The problem is that the resulting zip file doesn't work with Winzip (version 8.1) or XP's compressed folders. It does work with 7zip.

Winzip gives an error that this file is not in the standard Zip 2.0 format.

Is there a parameter that I can change that would get the library to compress in a Winzip/XP compatible format?

like image 647
John M Avatar asked Sep 14 '09 16:09

John M


1 Answers

Set this in your ZipOutputStream:

 UseZip64 = ICSharpCode.SharpZipLib.Zip.UseZip64.Off

Zip64 is not compatible with the Windows XP compressed folders utility or with WinZip.

Edit: apparently the API has changed since the version I'm using, the property is now an enum rather than a Boolean value.

like image 137
richardtallent Avatar answered Oct 07 '22 00:10

richardtallent