in reply to Put "ls" in array
# 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 );
I am trying to improve my English skills, if you see a mistake please feel free to reply or /msg me a correction
|
---|