我是 Perl 的新手,正在尝试学习这门语言,但在做一些我认为可能很简单的事情时遇到了困难。
我已经能够使脚本正常工作,该脚本将仅计算目录中的文件数。我想增强脚本以递归计算任何子目录中的所有文件。我已经搜索并找到了一些用于 GLOB 和 File::Find 的不同选项,但无法让它们工作。
我当前的代码:
#!/usr/bin/perl
use strict;
use warnings;
use Path::Class;
# Set variables
my $count = 0; # Set count to start at 0
my $dir = dir('p:'); # p/
# Iterate over the content of p:pepid content db/pepid ed
while (my $file = $dir->next) {
next if $file->is_dir(); # See if it is a directory and skip
print $file->stringify . "\n"; # Print out the file name and path
$count++ # increment count by 1 for every file counted
}
print "Number of files counted " . $count . "\n";
任何人都可以帮助我增强此代码以递归搜索任何子目录吗?