in reply to How do I read files from a folder and place them into a list?

If you want the files in the current directory, you could do something like this:
my $somedir = '.'; opendir DH, $somedir or die "Cannot open $somedir: $!"; my @files = grep { ! -d } readdir DH; closedir DH;