in reply to Re^2: globing directory names with spaces
in thread globing directory names with spaces
Which will return a list of all the files with the .java extension in the given directory and all of it's subdirectories.use File::Find::Rule; my @files = File::Find::Rule->file() ->name('*.java') ->in('your/dir/here');
_________
broquaint
|
|---|