in reply to
reading in multiple files froma linux directory
The general practice is to
opendir
, then
readdir
into an array, then step through the array doing your file processing on each element.
--twerq
Comment on
Re: reading in multiple files froma linux directory
In Section
Seekers of Perl Wisdom