in reply to checking bareword-filehandle

Is there a good reason not to use a lexical variable as file handle?

open my $FH, '>', 'whatever' or warn 'blah'; # much much later if ($FH) { print $FH "something }

works for sure.

Replies are listed 'Best First'.
Re^2: checking bareword-filehandle
by morgon (Priest) on Aug 06, 2012 at 13:24 UTC
    Evidently, but at the moment the open is in a different lexial scope as the print so I would need to declare a lexical $FH in the common enclosing scope - I'll do that eventually.

    But apart from your suggestions for suppressing the warning outright - is there really no easy way for checking such a handle?