2

オプションを未定義の値 (この場合は「maxdepth」) のままにしても問題ありませんか?

#!/usr/bin/env perl
use warnings;
use 5.012;
use File::Find::Rule::LibMagic qw(find);
use Getopt::Long qw(GetOptions);

my $max_depth;
GetOptions ( 'max-depth=i' => \$max_depth );
my $dir = shift;

my @dbs = find( file => magic => 'SQLite*', maxdepth => $max_depth, in => $dir );
say for @dbs;

または、次のように書く必要があります。

if ( defined $max_depth ) {
    @dbs = find( file => magic => 'SQLite*', maxdepth => $max_depth, in => $dir );
} else {
    @dbs = find( file => magic => 'SQLite*', in => $dir );
}
4

2 に答える 2

6

を値として変数を使用してmaxdepth設定しても問題ありません。Perlのすべての変数は、値で始まります。undefundefundef

詳細

File::Find::Rule::LibMagic拡張しFile::Find::Ruleます。のfind関数は次のようにFile::Find::Rule始まります。

sub find {
    my $object = __PACKAGE__->new();

new関数は次を返します。

bless {
    rules    => [],
    subs     => {},
    iterator => [],
    extras   => {},
    maxdepth => undef,
    mindepth => undef,
}, $class;

maxdepthデフォルトではに設定されていることに注意してくださいundef

于 2012-02-05T15:42:36.743 に答える
1

わかった?おそらくFile::Find::Ruleを混乱させることはありません

$ perl -MFile::Find::Rule -le " print for File::Find::Rule->maxdepth(undef)->in( q/tope/ ) "
tope
tope/a
tope/b
tope/c
tope/c/0
tope/c/1
tope/c/2

$ perl -MFile::Find::Rule -le " print for File::Find::Rule->maxdepth(1)->in( q/tope/ ) "
tope
tope/a
tope/b
tope/c

$ perl -MFile::Find::Rule -le " print for File::Find::Rule->maxdepth(-1)->in( q/tope/ ) "
tope

$ perl -MFile::Find::Rule -le " print for File::Find::Rule->maxdepth(2)->in( q/tope/ ) "
tope
tope/a
tope/b
tope/c
tope/c/0
tope/c/1
tope/c/2

$ pmvers File::Find::Rule
0.33
于 2012-02-05T15:41:53.583 に答える