File::Find::Rule

File::Find::Rule is an alternative Perl interface to File::Find.
Download

File::Find::Rule Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Richard Clamp
  • Publisher web site:
  • http://search.cpan.org/~rclamp/

File::Find::Rule Tags


File::Find::Rule Description

File::Find::Rule is an alternative Perl interface to File::Find. SYNOPSIS use File::Find::Rule; # find all the subdirectories of a given directory my @subdirs = File::Find::Rule->directory->in( $directory ); # find all the .pm files in @INC my @files = File::Find::Rule->file() ->name( '*.pm' ) ->in( @INC ); # as above, but without method chaining my $rule = File::Find::Rule->new; $rule->file; $rule->name( '*.pm' ); my @files = $rule->in( @INC ); Requirements: · Perl


File::Find::Rule Related Software