in reply to Re: error : Value too large for defined data type while checking file existence in perl
in thread error : Value too large for defined data type while checking file existence in perl
Ignore b, maybe try something like this:
use Errno; $! = 0; if (-e $file || $! == Errno::EOVERFLOW) { # exists } else { # doesn't }
|
|---|