如何在没有第三方 vb.net 的情况下压缩/解压缩文件

发布于 2024-11-26 17:23:31 字数 195 浏览 0 评论 0原文

是否有 vb.net 的代码,以便我可以在没有任何 3rd 方程序的情况下压缩和解压缩文件。 例如(我知道这是不对的)

 Using zip As ZipFile = New ZipFile
    zip.AddDirectory(directory)
    zip.Save(targetZip)
End Using

Is there any code for vb.net so i can zip and unzip file without any 3rd party programs.
e.g. (i know this is not right)

 Using zip As ZipFile = New ZipFile
    zip.AddDirectory(directory)
    zip.Save(targetZip)
End Using

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

草莓味的萝莉 2024-12-03 17:23:31

.NET 中有 ZipPackage 类,但它PITA 的使用方式如此,您可能最好使用第三方库,例如 SharpZipLib

There's the ZipPackage class in .NET but it is such a PITA to use that you are probably better of using a third party library such as SharpZipLib.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文