Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: printing to a file

by DigitalKitty (Parson)
on Apr 02, 2004 at 19:09 UTC ( #342085=note: print w/replies, xml ) Need Help??


in reply to printing to a file

Hi dudley.

I felt compelled to offer a little advice. In your open / close functions, I would include some minor modifications in the event of failure (hardware related, etc.).
open(FILE, $filein) or die "Couldn't open file $filein : $!\n"; close (FILE) or die "Couldn't close file : $!\n"; open (NEW, ">$filein") or die "Couldn't open $filein : $!\n"; close (NEW) or die "Couldn't close file: $!\n";

Even though perl will close filehandles for you, I feel it is unwise to not explicitly check for success / failure.

Hope this helps,
-Katie

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others cooling their heels in the Monastery: (2)
As of 2023-03-24 15:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (61 votes). Check out past polls.

    Notices?