如何使用 Perl 搜索存档文件

发布于 2024-07-05 23:23:23 字数 33 浏览 6 评论 0原文

您使用 Perl 阅读压缩目录内容的首选方法是什么?

What is your preferred method for reading through the contents of zipped directories with Perl ?

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

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

发布评论

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

评论(3

递刀给你 2024-07-12 23:23:23

如果您想要 .tar.gz 存档的内容

open(DIR_LISTING, "gzip -dc concert25.tgz | tar -tf -|") || die;
while (<DIR_LISTING>) {
   print;
}
close (DIR_LISTING);

If you want the contents of a .tar.gz archive

open(DIR_LISTING, "gzip -dc concert25.tgz | tar -tf -|") || die;
while (<DIR_LISTING>) {
   print;
}
close (DIR_LISTING);
甩你一脸翔 2024-07-12 23:23:23

存档::Zip

require Archive::Zip;
my $zip = Archive::Zip->new($somefile);
for($zip->memberNames()) {
  print "$_\n";
}

Archive::Zip

require Archive::Zip;
my $zip = Archive::Zip->new($somefile);
for($zip->memberNames()) {
  print "$_\n";
}
豆芽 2024-07-12 23:23:23

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.

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