gpt4 book ai didi

c# - Ionic Zip 仅提取特定文件夹

转载 作者:行者123 更新时间:2023-11-30 16:10:26 24 4
gpt4 key购买 nike

我有一个案例,我需要使用 C# Ionic.zip 库提取 Zip 文件。 Zip 文件包含多个文件夹,我想提取特定文件夹并将其复制到特定目标。

例如名为 abc.zip 的 Zip 文件和目录结构如下

父目录->子目录1->文件a,文件b父目录->子目录2->文件c,文件d

我只想复制子目录 1,我该如何完成这个任务?

最佳答案

        var existingZipFile = "name of the file.zip";
var targetDirectory = "name of the folder";

using (ZipFile zip = ZipFile.Read(existingZipFile))
{
foreach (ZipEntry e in zip.Where(x => x.FileName.StartsWith("Sub directory 1")))
{
e.Extract(targetDirectory);
}
}

关于c# - Ionic Zip 仅提取特定文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25787566/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com