in reply to Skipping files in a directory

Hi,
if (opendir DIR,$dir) { # do stuff with contents } else { print "[WARNING] $dir not present\n"; }

This will work without continue. continue works with loops like for, foreach, while, but - AFAIK - not with a simple opendir statement
  • Regards,
    svenXY