in reply to Testing for readdir failure
eval { # catch fatals use warnings FATAL => 'all'; # die instead of warn print scalar readdir($dh); }; warn "--- $@" if $@; # report error [download]
HTH!
Cheers Rolf
( addicted to the Perl Programming Language)