如何在没有第三方 vb.net 的情况下压缩/解压缩文件
是否有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.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.