Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my $export_file = "//myserver/app/finder/users.txt"; print "****Path = $export_file *****"; open(SOURCE, "< $export_file") or die "Couldn't open $export_file for +reading: $!\n";{ my @raw_data=<SOURCE>; print "****** @raw_data ******<br>"; close(SOURCE); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: File Open Problem
by Joost (Canon) on Aug 25, 2005 at 14:41 UTC | |
|
Re: File Open Problem
by holli (Abbot) on Aug 25, 2005 at 14:44 UTC |