gpt4 book ai didi

perl - 如何遍历 Perl 目录中的文件?

转载 作者:行者123 更新时间:2023-12-03 10:07:24 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




11 年前关闭。




Possible Duplicate:
How can I list all of the files in a directory with Perl?



我想遍历所有包含在同一目录中的几百个文件。我将如何在 Perl 中做到这一点?

最佳答案

#!/usr/bin/perl -w

my @files = <*>;
foreach my $file (@files) {
print $file . "\n";
}

在哪里
 @files = <*>;


 @files = </var/www/htdocs/*>;
@files = </var/www/htdocs/*.html>;

等等。

关于perl - 如何遍历 Perl 目录中的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2149368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com