如何使用SharpZipLib在没有压缩的情况下将文件添加到存档?

时间:2009-11-06 23:33:04

标签: c# sharpziplib

如何使用没有压缩的SharpZipLib将文件添加到Zip存档?

Google上的示例似乎非常薄弱。

1 个答案:

答案 0 :(得分:7)

您可以使用SetLevel类的ZipOutputStream方法将压缩级别设置为0。

using (ZipOutputStream s = new ZipOutputStream(File.Create("test.zip")))
{
    s.SetLevel(0); // 0 - store only to 9 - means best compression

    string file = "test.txt";

    byte[] contents = File.ReadAllBytes(file);

    ZipEntry entry = new ZipEntry(Path.GetFileName(file));
    s.PutNextEntry(entry);
    s.Write(contents, 0, contents.Length);
}

编辑:实际上,在审阅文档后,有一种更简单的方法。

using (ZipFile z = ZipFile.Create("test.zip"))
{
    z.BeginUpdate();
    z.Add("test.txt", CompressionMethod.Stored);
    z.CommitUpdate();
}