在我的c#代码中,我正在尝试创建一个zip文件夹供用户在浏览器中下载。所以这里的想法是用户点击下载按钮,他得到一个zip文件夹。
出于测试目的,我使用单个文件并将其压缩但是当它工作时我会有多个文件。
这是我的代码
var outPutDirectory = AppDomain.CurrentDomain.BaseDirectory;
string logoimage = Path.Combine(outPutDirectory, "images\\error.png"); // I get the file to be zipped
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.BufferOutput = false;
HttpContext.Current.Response.ContentType = "application/zip";
HttpContext.Current.Response.AddHeader("content-disposition", "attachment; filename=pauls_chapel_audio.zip");
using (MemoryStream ms = new MemoryStream())
{
// create new ZIP archive within prepared MemoryStream
using (ZipArchive zip = new ZipArchive(ms))
{
zip.CreateEntry(logoimage);
// add some files to ZIP archive
ms.WriteTo(HttpContext.Current.Response.OutputStream);
}
}
当我尝试这件事时,它给了我这个错误
中央目录损坏。
[System.IO.IOException] = {“试图在流的开头之前移动位置。”}
发生异常
使用(ZipArchive zip = new ZipArchive(ms))
有什么想法吗?
答案 0 :(得分:15)
您正在创建ZipArchive
而未指定模式,这意味着它首先尝试从中读取,但没有什么可读的。您可以通过在构造函数调用中指定ZipArchiveMode.Create
来解决此问题。
另一个问题是,在关闭MemoryStream
之前,您正在将ZipArchive
写入输出 ...这意味着ZipArchive
代码已经没有了我有机会做任何家务。您需要将写入部分移到嵌套的using
语句之后 - 但请注意,您需要更改创建ZipArchive
的方式以使流保持打开状态:
using (MemoryStream ms = new MemoryStream())
{
// Create new ZIP archive within prepared MemoryStream
using (ZipArchive zip = new ZipArchive(ms, ZipArchiveMode.Create, true))
{
zip.CreateEntry(logoimage);
// ...
}
ms.WriteTo(HttpContext.Current.Response.OutputStream);
}