如何使用 Perl 搜索存档文件
您使用 Perl 阅读压缩目录内容的首选方法是什么?
What is your preferred method for reading through the contents of zipped directories with Perl ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想要 .tar.gz 存档的内容
If you want the contents of a .tar.gz archive
存档::Zip
Archive::Zip
CPAN 上有多个模块可用于处理各种存档格式(zip、tar 等),您可能需要的模块是 存档::Zip。
There are several modules on CPAN for working with various archive formats (zip, tar, etc.), the one you're probably after is Archive::Zip.