in reply to Re^2: how to prevent open from dyingin thread how to prevent open from dying
while ( ... ) { my $fh; if (!open($fh, '<', $inputFile)) { warn( "Unable to open analysis file $inputFile: $!\n" ); next; } ... } [download]