我正在使用next if $file eq '.' $file eq '..';
在目录和子目录中找到该文件(少数目录除外)并打开文件以进行查找和替换。但是当我在文件夹名称中有点时,它会将文件夹视为文件并说无法打开。我使用-f过滤了文件但是它丢失了以显示主文件夹中的文件。
是否有任何递归方式来查找文件夹和文件,即使它有点。
opendir my $dh, $folder or die "can't open the directory: $!";
while ( defined( my $file = readdir( $dh ) ) ) {
chomp $file;
next if $file eq '.' $file eq '..';
{
if ( $file ne 'fp' ) {
print "$folder\\$file";
if ( $file =~ m/(.[^\.]*)\.([^.]+$)/ ) {
...
}
}
}
}
答案 0 :(得分:5)
您可以按照Sobrique的建议使用File::Find或File::Find::Rule。
它非常易于使用:
#!/usr/bin/perl
use strict;
use warnings;
use File::Find;
sub process_file {
next if (($_ eq '.') || ($_ eq '..'));
if (-d && $_ eq 'fp'){
$File::Find::prune = 1;
return;
}
print "Directory: $_\n" if -d;
print "File: $_\n" if -f;
#Do search replace operations on file below
}
find(\&process_file, '/home/chankeypathak/Desktop/test.folder'); #provide list of paths as second argument.
我有以下文件结构。
test.folder/test.txt
test.folder/sub.folder
test.folder/sub.folder/subfile.txt
test.folder/fp
test.folder/fp/fileinsidefp.txt
我得到了以下输出
$ perl test.pl
File: test.txt
Directory: sub.folder
File: subfile.txt
答案 1 :(得分:4)
是。使用File::Find::Rule
foreach my $file ( File::Find::Rule->file()->in( "." ) ) {
}
......就是这样。几乎所有'filetest'标志都有选项,因此file()
为-f
或readable()
为-r
。