Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Conditional creation of files - global or scoped filehandle

by stevieb (Canon)
on May 06, 2016 at 12:33 UTC ( [id://1162347]=note: print w/replies, xml ) Need Help??


in reply to Conditional creation of files - global or scoped filehandle

Can you explain what you're trying to do? You want to open a handle in a condition, then use the handle globally elsewhere. What if you don't open the file? Do you have code like this?

if (...){ open FH, '>', $file or die $!; } ... if (...){ print FH ...; } ... if (...){ print FH ...; }

In other words, if the 'Example' if wasn't true, that file won't be open, and every call to the handle will need to be wrapped in a conditional as well.

Understanding what you're trying to do overall will help us help you sort out your logic.

Replies are listed 'Best First'.
Re^2: Conditional creation of files - global or scoped filehandle
by Anonymous Monk on May 06, 2016 at 13:47 UTC
    Yes that is correct. I was mostly interested in the best way to tackle such an issue but as pointed out in the first reply - declaring the filehandles outside of the IF-statement is probably the easiest solution.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1162347]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (3)
As of 2024-04-25 12:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found