我有一种方法可以使用 DotNetZip 压缩一个或多个文件,并且它一直在正常工作。我今天第一次收到错误,它似乎与存档的总大小有关。使用相同的 60mb .tiff 图像,我会添加一些额外的副本,测试,重复。它工作正常,直到添加了大约 10 张图像,然后,当我使用 WinRar 打开 Zip 文件时,我会收到“存档意外结束”错误。以这种方式进行测试,我相信我已经排除了与我的代码或文件有关的问题(损坏或其他东西)。代码没有错误,只有WinRar。当我打开 Zip 文件时,只显示一个大小为“0”的文件。因此,似乎达到了某种大小限制,并且不允许创建存档。我只是不知道它是哪个限制。
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.ContentType = "application/zip";
HttpContext.Current.Response.AddHeader("content-disposition", "filename=" + "MyFileName" + DateTime.Now.ToString("MMddyyyy") + ".zip");
using (var zip = new Ionic.Zip.ZipFile())
{
zip.MaxOutputSegmentSize = 819200; // I tried adding this and it did not fix the problem
foreach (var file in files)
{
zip.AddFile(file.FileLocation, file.ZipFileDirectory).FileName =
(!string.IsNullOrEmpty(file.ZipFileDirectory) && (file.ZipFileDirectory != @"\")) ?
string.Format(@"{0}\{1}", file.ZipFileDirectory, file.FileName) :
file.FileName;
}
zip.Save(HttpContext.Current.Response.OutputStream);
}