DeflateStream 是否应该创建可以存储为标准 .zip 存档的存档流?
我正在尝试从本地文件创建内存中的 zip(远程发送)。我使用 DeflateStream 从本地磁盘上的文件中获取压缩字节数组:
public static byte[] ZipFile(string csvFullPath)
{
using (FileStream csvStream = File.Open(csvFullPath, FileMode.Open, FileAccess.Read))
{
using (MemoryStream compressStream = new MemoryStream())
{
using (DeflateStream deflateStream = new DeflateStream(compressStream, CompressionLevel.Optimal))
{
csvStream.CopyTo(deflateStream);
deflateStream.Close();
return compressStream.ToArray();
}
}
}
}
这很好用。但是,当我将生成的字节转储到 zip 文件时:
byte[] zippedBytes = ZipFile(FileName);
File.WriteAllBytes("Sample.zip", zippedBytes);
我无法使用 Windows 内置 .zip 功能(或任何其他第 3 方存档工具)打开生成的 .zip 存档。
我现在计划的另一种方法是使用 ZipArchive - 但是这需要在磁盘上创建临时文件(首先将文件复制到单独的目录中,然后对其进行压缩,然后将其读入字节数组,然后将其删除)