I\'m trying to figure out the best way to find the number of files in a particular directory when there are a very large number of files (more than 100,000).
When the
You could try if using opendir() and readdir() in Perl is faster. For an example of those function, look here.
opendir()
readdir()
Perl