gpt4 book ai didi

c# - 如何在 C# 中提取 ZIP 文件

转载 作者:太空狗 更新时间:2023-10-29 17:28:14 24 4
gpt4 key购买 nike

如何使用 C# 提取 ZIP 文件?

最佳答案

在 .NET Framework 4.5 和更新版本中

using System;
using System.IO;
using System.IO.Compression;

namespace ConsoleApplication
{
class Program
{
static void Main(string[] args)
{
string startPath = @"c:\example\start";
string zipPath = @"c:\example\result.zip";
string extractPath = @"c:\example\extract";

ZipFile.CreateFromDirectory(startPath, zipPath);

ZipFile.ExtractToDirectory(zipPath, extractPath);
}
}
}

关于c# - 如何在 C# 中提取 ZIP 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4296918/

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