in reply to how to make wildcard work in if (-e *..)
opendir DIR, '.' or die "Error: $!"; my @files = grep { /\.txt$/ } readdir DIR; [download]