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

Re: Open file issues

by eserte (Deacon)
on Aug 18, 2004 at 09:55 UTC ( [id://383908]=note: print w/replies, xml ) Need Help??


in reply to Open file issues

All the files in your script share one filehandle, FILE. You have two options to solve this problem: use Symbol::gensym() to create unique filehandles, or use lexicals instead of bareword filehandles. The latter option requires you to have a new perl (5.6 or 5.8, I can't remember). The code would look like this:
my $fh; open($fh, "...") or die ...; return $fh;

Replies are listed 'Best First'.
Re^2: Open file issues
by Fletch (Bishop) on Aug 18, 2004 at 13:03 UTC

    You could also use IO::File which should work in even older perls.

Log In?
Username:
Password:

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

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

    No recent polls found