【发布时间】:2011-11-23 03:54:36
【问题描述】:
我目前正在编写一个 Perl 程序,用于读取给定文件(命令行或硬编码),然后递归打印(如果扩展名为 .bragi,则打开)列出的文件和目录。例如:
~
hello.bragi
subdir/
~/subdir
check.bragi
在哪里
master.bragi:
~/hello.bragi
和
hello.bragi:
subdir/
和
check.bragi:
main.c
程序将打开master.bragi,查看列出的hello.bragi,打开它找到列出的目录,打开该目录,然后重复。
我目前有这个代码:
#!/usr/bin/perl -w
use strict;
use File::Basename;
sub isdir {
return (-d $_[0]);
}
sub isfile {
return (-f $_[0]);
}
sub getfn {
my $path = $_[1];
my (undef, undef, my $ext) = fileparse($_[0], qr"\..*");
print "arg:\t".$path."\n";
if ($ext eq ".bragi") {
open FILE, "<", $path.$_[0] or die $!;
my @lines = <FILE>;
foreach my $line (@lines) {
chomp($line);
if (isfile($line)) {
print "file:\t".$path.$line."\n";
}
if (isdir($line)) {
print "DIR:\t".$line."\n";
opendir my ($dh), $path.$line or die "Filename does not exist: $!";
my @files = readdir $dh;
closedir $dh;
#print $files[0].":\t".$path.$line."/\n";
foreach my $f (@files) {
my $next = $path.$line."/";
getfn($f, $next);
}
}
}
}
}
getfn("master.bragi", "/home/tekknolagi/twentytwelve/fs/");
除了我收到一些错误,例如No such file or directory at ./files.pl line 19, <FILE> line 3.
而且我不完全确定我在做什么。想法?
预期输出(按顺序):
master.bragi
hello.bragi
check.bragi
main.c
【问题讨论】: