ZipFile.CreateFromDirectory C#发送到MemoryStream

时间:2018-05-07 19:50:11

标签: c# c#-4.0

我如何基本上使用ZipFile.CreateFromDirectory将zipfile发送回内存流而不是输出路径。

或者我是否必须使用ZipArchive并自己生成zip文件?似乎有点奇怪,没有一种流的方法。

这基本上是我尝试做的事情

using (MemoryStream ms = new MemoryStream())
{
   ZipFile.CreateFromDirectory(path, ms)
   buf = ms.ToArray();
   LogZipFile(path, filesize, buf.LongLength);
}

0 个答案:

没有答案