Help for this page

Select Code to Download


  1. or download this
    find ( {
        no_chdir => 0,
    ...
            push ( @fileList, $File::Find::name ); # get name with path
            }},
        $tagLocation );
    
  2. or download this
    our @dirExclusions = qw( \.
        \/LOG(\/|$)
    ...
            push ( @fileList3, $File::Find::name );         
            }},
        $tagLocation );
    
  3. or download this
    our @dirExclusions = qw( \.
        \/LOG(\/|$)
    ...
    
    my @fileList2;
    @fileList2 = $rule->in($tagLocation);
    
  4. or download this
    our @dirExclusions = qw( \.
        \/LOG(\/|$)
    ...
    
    my @fileList2;
    @fileList2 = $rule->in($tagLocation);
    
  5. or download this
    $rule->or(
        $rule->new->directory
            ->name( qr/(\.|\/LOG(\/|$)|\/cache(\/|$)|\/AVCHD(\/|$))/i )
            ->prune->discard,
        $rule->new->directory);
    
  6. or download this
    our @de = qw (*.* LOG cache AVCHD);
    
    ...
    
    my @fileList2;
    @fileList2 = $rule->in($tagLocation);