T
Tad McClellan
open (FILE, $file);
You should always, yes *always*, check the return value from open():
open (FILE, $file) or die "could not open '$file' $!";
open (FILE, $file);
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.