Thanks to http://stackoverflow.com/a/12350106/222748 I got:
using (var memoryStream = new MemoryStream())
{
using (var archive = new ZipArchive(memoryStream, ZipArchiveMode.Create, true))
{
var demoFile = archive.CreateEntry("foo.txt");
using (var entryStream = demoFile.Open())
using (var streamWriter = new StreamWriter(entryStream))
{
streamWriter.Write("Bar!");
}
}
using (var fileStream = new FileStream(@"C:\Temp\test.zip", FileMode.Create))
{
memoryStream.Seek(0, SeekOrigin.Begin);
memoryStream.CopyTo(fileStream);
}
}
So we need to call dispose on ZipArchive before we can use it, which means passing ‘true‘ as the third parameter to the ZipArchive so we can still access the stream after disposing it.
时间: 2024-10-17 09:08:45