C# 将zip文件完整解压
时间: 2023-12-01 08:03:12 浏览: 83
C#_zip压缩解压
4星 · 用户满意度95%
你可以使用 .NET 中的 System.IO.Compression.ZipFile 类来解压缩 zip 文件。以下是一个示例代码:
```csharp
using System.IO.Compression;
// 解压缩指定 zip 文件到指定目录
public static void Unzip(string zipFilePath, string extractPath)
{
ZipFile.ExtractToDirectory(zipFilePath, extractPath);
}
```
你可以调用 `Unzip` 方法来解压缩指定的 zip 文件到指定目录。例如:
```csharp
string zipFilePath = @"C:\example\example.zip";
string extractPath = @"C:\example\extracted\";
Unzip(zipFilePath, extractPath);
```
这将解压缩 `C:\example\example.zip` 文件到 `C:\example\extracted\` 目录。
阅读全文