如何获取 .zip 内容的类型和数量
如何获取 C# 中压缩文件夹的内容名称,即压缩文件夹内的文件和文件夹的名称? 我想仅使用 GZipStream 解压缩 zip。
谢谢, 卡皮尔
How can i get the content names of a zipped folder in C# i.e. name of files and folders inside the compressed folder?
I want to decompress the zip by using GZipStream only.
thanks,
kapil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用 GZipStream 执行此操作仅有的。您将需要 ZIP 标准的实现,例如 #ziplib。引用自MSDN:
#ziplib 示例:
You can't do this using GZipStream only. You will need an implementation of the ZIP standard such as #ziplib. Quote from MSDN:
Example with #ziplib: