在C#中解压缩子目录和文件

时间:2013-09-10 08:34:52

标签: c# .net zip compression

我正在尝试在我目前正在处理的项目中实现解压缩功能,但问题是我在许可方面有一些限制,我需要远离GPL类似的许可证,因为项目是封闭的来源。

这意味着我不能再使用SharpZipLib ..所以我转移到.Net库 目前我正在尝试使用ZipArchive库。

问题是它没有提取目录/子目录,所以如果我有blabla.zip file.txt里面和/folder/file2.txt整个东西将被解压缩到file.txt和file2.txt,所以它忽略了子目录。

我正在使用MSDN网站上的示例。 看起来像是:

using (ZipArchive archive = ZipFile.OpenRead(zipPath))
{
  foreach (ZipArchiveEntry entry in archive.Entries)
  {
    entry.ExtractToFile(Path.Combine(extractPath, entry.FullName));
  } 
}

知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:14)

如果您的存档看起来像这样:

archive.zip
  file.txt
  someFolder
    file2.txt

然后entry.FullName对于file2.txt是someFolder/file2.txt,所以即使你的代码在文件夹存在的情况下也能正常工作。所以你可以创建它。

foreach (ZipArchiveEntry entry in archive.Entries)
{
    string fullPath = Path.Combine(extractPath, entry.FullName);
    if (String.IsNullOrEmpty(entry.Name))
    {
        Directory.CreateDirectory(fullPath);
    }
    else
    {
        if (!entry.Name.Equals("please dont extract me.txt"))
        {
            entry.ExtractToFile(fullPath);
        }
    }
}

或者,如果需要提取所有存档

,最好使用静态ZipFile方法
ZipFile.ExtractToDirectory(zipPath, extractPath);