VB.NET ICSharpCode.SharpZipLib.Zip 解压文件
时间: 2023-12-01 21:04:34 浏览: 230
ASP.NET 文件压缩解压类(C#)
使用 ICSharpCode.SharpZipLib.Zip 库可以实现 VB.NET 解压文件的功能,以下是示例代码:
```vb
Imports System.IO
Imports ICSharpCode.SharpZipLib.Zip
Public Sub UnzipFile(ByVal zipFilePath As String, ByVal extractPath As String)
Dim fastZip As New FastZip()
fastZip.ExtractZip(zipFilePath, extractPath, Nothing)
End Sub
```
在代码中,`UnzipFile` 方法接收两个参数,`zipFilePath` 为要解压的 ZIP 文件路径,`extractPath` 为解压后的文件存放路径。`FastZip` 类提供了 `ExtractZip` 方法用于解压 ZIP 文件。
阅读全文