12345
opendir DIR, $dir or die $!;my $files = grep /\.\w+$/, readdir DIR;closedir DIR;$files == 0 && print "Verzeichnis leer!";