我如何基本上使用ZipFile.CreateFromDirectory
将zipfile发送回内存流而不是输出路径。
或者我是否必须使用ZipArchive
并自己生成zip文件?似乎有点奇怪,没有一种流的方法。
这基本上是我尝试做的事情
using (MemoryStream ms = new MemoryStream())
{
ZipFile.CreateFromDirectory(path, ms)
buf = ms.ToArray();
LogZipFile(path, filesize, buf.LongLength);
}