我使用C#-MVC3。我有一个“导出”页面。我有一些从DB导出不同表的函数,每个函数都从表中创建一个CSV文件,并将FileContentResult文件返回给用户。
现在我想为“全部导出”创建一个按钮,一次下载所有文件。 我尝试使用ZipFile,但它只获取文件名和路径 - 保存在服务器上的文件,而不是“FileContentResult”文件。
所以我想暂时将“FileContentResult”文件保存在服务器上,压缩并删除它们 - 但我找不到如何保存“FileContentResult”文件。
如果你能帮助我或给我另一个想法,我很乐意听到。
答案 0 :(得分:1)
我的解决方案:
public ZipFile DownloadAllToZip()
{
string path = "c:\\TempCSV";
try
{
if (Directory.Exists(path))
{
EmptyFolder(path);
}
else
{
DirectoryInfo di = Directory.CreateDirectory(path);
}
List<FileContentResult> filesToExport = GetAllCSVs();
foreach (var file in filesToExport)
{
try
{
using (FileStream stream = new FileStream(path + "\\" + file.FileDownloadName, FileMode.CreateNew))
{
using (StreamWriter writer = new StreamWriter(stream, Encoding.UTF8))
{
byte[] buffer = file.FileContents;
stream.Write(buffer, 0, buffer.Length);
writer.Close();
}
}
}
catch { }
}
}
catch{ }
Response.Clear();
Response.BufferOutput = false;
Response.ContentType = "application/zip";
Response.AddHeader("content-disposition", "attachment; filename=MaterialAssetTracker.zip");
ZipFile zip= new ZipFile();
using (zip)
{
zip.CompressionLevel = CompressionLevel.None;
zip.AddSelectedFiles("*.csv", path + "\\", "", false);
zip.Save(Response.OutputStream);
}
Response.Close();
EmptyFolder(path);
return zip;
}