3

我在 Mac 上使用以下代码使用 Mono 解压缩 zip 文件。zip 文件包含目录下的条目(例如foo/bar.txt)。但是,在解压后的目录中,FastZip 不是创建一个包含文件的目录,而是创建一个foo文件。我该如何解决这个问题?bar.txtfoo\bar.txt

FastZip fz = new FastZip();
string filePath = @"path\to\myfile.zip";

fz.ExtractZip(filePath, @"path\to\unzip\to", null);

这会foo\bar.txtpath\to\unzip\to.

4

2 回答 2

1

显然不能FastZip用于这种情况,所以我最终编写了自己的解压缩机制:

string filePath = @"path\to\myfile.zip";
string unzipDir = @"path\to\unzip\to";

using (var zipFile = new ZipFile(filePath))
{
    foreach (var zipEntry in zipFile.OfType<ZipEntry>())
    {
        var unzipPath = Path.Combine(unzipDir, zipEntry.Name);
        var directoryPath = Path.GetDirectoryName(unzipPath);

        // create directory if needed
        if (directoryPath.Length > 0)
        {
            Directory.CreateDirectory(directoryPath);
        }

        // unzip the file
        var zipStream = zipFile.GetInputStream(zipEntry);
        var buffer = new byte[4096];

        using (var unzippedFileStream = File.Create(unzipPath))
        {
            StreamUtils.Copy(zipStream, unzippedFileStream, buffer);
        }
    }
}
于 2013-04-09T20:56:24.290 回答
-1

创建 zip 时使用正斜杠分隔文件夹

于 2013-05-04T05:45:00.107 回答