in reply to Re: How do I read all the file names of a directory into an array?
in thread How do I read all the file names of a directory into an array?
map { qq{<a href="$_">$_</a><br>} } ## format each file sort ## sort them grep { !/^\./ and -T "$dir$_" } ## no .name files, text fil +es only readdir MYDIR
|
|---|