in reply to Re: quickest way to find number of files in a directory?
in thread quickest way to find number of files in a directory?

That works very nicely, thank you.
  • Comment on Re^2: quickest way to find number of files in a directory?

Replies are listed 'Best First'.
Re^3: quickest way to find number of files in a directory?
by Anonymous Monk on Dec 14, 2012 at 12:44 UTC
    Some people use whitespaces in paths. Try: my @files = <'$dir/*'>;