Решение
Я тестировал с '.' в качестве каталога ... вы тестируете с другим каталогом. Имена, прочитанные из каталога, затем проверяются относительно текущего каталога. Если я использую другое имя каталога, я получу почти все, кроме '.' и «..» указаны как файлы независимо от того.
Если вы добавите имя к значению $ ARGV [0], вы получите ожидаемый результат:
#!/bin/perl -w
use strict;
if ($ARGV[1]) {
die("Error: You can only monitor one directory at a time\n");
}
my $directory = $ARGV[0] || die "Error: No directory defined\n";
opendir(DIR, $directory) || die "Error: Can't open dir $directory: $!";
my @contents = readdir(DIR);
foreach my $item(@contents) {
next if -d "$ARGV[0]/$item";
print "$ARGV[0]/$item is a file\n";
}
closedir (DIR);
Предыдущие попытки объяснить
Это работает на MacOS X:
#!/bin/perl -w
use strict;
my @contents = <*>;
foreach my $item (@contents)
{
print "== $item\n";
next if -d $item;
print "$item is a file\n";
}
Тест:
MiniMac JL: perl -c xx.pl
xx.pl syntax OK
MiniMac JL: perl xx.pl
== cproto-4.7g
== fpqsort1
fpqsort1 is a file
== fpqsort1.h
fpqsort1.h is a file
== fpqsort2
fpqsort2 is a file
== fpqsort2.c
fpqsort2.c is a file
== gcc-predef.h
gcc-predef.h is a file
== git-1.6.5.7
== go
== makefile
makefile is a file
== qs-test1.c
qs-test1.c is a file
== qs-test2.c
qs-test2.c is a file
== RCS
== rep-report.txt
rep-report.txt is a file
== select.c
select.c is a file
== soq
== xx.pl
xx.pl is a file
MiniMac JL:
С учетом незначительно модифицированной версии кода в вопросе:
#!/bin/perl -w
use strict;
if ($ARGV[1]) {
die("Error: You can only monitor one directory at a time\n");
}
my $directory = $ARGV[0] || die "Error: No directory defined\n";
opendir(DIR, $directory) || die "Error: Can't open dir $directory: $!";
my @contents = readdir(DIR);
foreach my $item(@contents) {
print "<<$item>>\n";
next if -d $item;
print"$item is a file\n";
}
closedir (DIR);
Запустив его в том же каталоге, что и раньше, я получаю вывод:
Minimac JL: perl yy.pl .
<<.>>
<<..>>
<<cproto-4.7g>>
<<fpqsort1>>
fpqsort1 is a file
<<fpqsort1.h>>
fpqsort1.h is a file
<<fpqsort2>>
fpqsort2 is a file
<<fpqsort2.c>>
fpqsort2.c is a file
<<gcc-predef.h>>
gcc-predef.h is a file
<<git-1.6.5.7>>
<<go>>
<<makefile>>
makefile is a file
<<qs-test1.c>>
qs-test1.c is a file
<<qs-test2.c>>
qs-test2.c is a file
<<RCS>>
<<rep-report.txt>>
rep-report.txt is a file
<<select.c>>
select.c is a file
<<soq>>
<<xx.pl>>
xx.pl is a file
<<yy.pl>>
yy.pl is a file
Minimac JL:
Обратите внимание на идиому Perlish 'next if -d $item;
'. Также обратите внимание на методы отладки: печатайте имена по мере их прохождения через массив - использование «<<» и «>>» для окружения имени помогает выявить странные побочные эффекты (такие как перевод строк в именах). Я дважды проверил, что приведенный код дает тот же результат - да. И я работаю на MacOS X 10.6.3 со стандартным Perl.