in reply to File Existence using "-e" not always working

Try
unless (-e $db_path) {
   if( $! ){
      print Fudge( "-e ((($db_path)))" );
   } else {
      print "not exist ((($db_path)))\n";
   }
}
  • Comment on Re: File Existence using "-e" not always working