in reply to How do I read all the file names of a directory into an array?

opendir DIR, "." or die "uhh: $!"; @files = readdir DIR; closedir DIR;
  • Comment on Re: How do I read all the file names of a directory into an array?
  • Download Code