我有一个非常奇怪的问题。我使用SharpZipLib库生成.zip。我发现.zip的大小比我的文本文件总大一点。我不知道什么是错的。我也尝试谷歌,但我找不到与我的情况有关的任何内容。这是我的代码:
protected void CompressFolder(string[] files, string outputPath)
{
using (ZipOutputStream s = new ZipOutputStream(File.Create(outputPath)))
{
s.SetLevel(0);
foreach (string path in files)
{
ZipEntry entry = new ZipEntry(Path.GetFileName(path));
entry.DateTime = DateTime.Now;
entry.Size = new FileInfo(path).Length;
s.PutNextEntry(entry);
byte[] buffer = new byte[4096];
int byteCount = 0;
using (FileStream input = File.OpenRead(path))
{
byteCount = input.Read(buffer, 0, buffer.Length);
while (byteCount > 0)
{
s.Write(buffer, 0, byteCount);
byteCount = input.Read(buffer, 0, buffer.Length);
}
}
}
}
}
答案 0 :(得分:6)
0的压缩级别表示SharpZipLib存储而不是压缩。
较大的尺寸是由于Zip元结构(文件名等)
然后,您的解决方案是将级别更改为更高级别,即:
s.SetLevel(9);