in reply to File open problem with "GLOB"
Instead of
saymy $output = new OUTFILE ('>C:\Program Files\cron\Cruise Ships\ship_da +ta.csv'); open (OUTFILE, '>C:\Program Files\cron\Cruise Ships\ship_data.csv'); # and later print (OUTFILE $input);
open my $output, '>', q{C:\Program Files\cron\Cruise Ships\ship_data.c +sv}; # and later print {$output} $input;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: File open problem with "GLOB"
by ikegami (Patriarch) on Mar 15, 2008 at 22:36 UTC | |
by chromatic (Archbishop) on Mar 16, 2008 at 01:05 UTC | |
by ikegami (Patriarch) on Mar 16, 2008 at 01:43 UTC | |
by chromatic (Archbishop) on Mar 16, 2008 at 06:57 UTC | |
by ikegami (Patriarch) on Mar 16, 2008 at 07:14 UTC | |
by Narveson (Chaplain) on Mar 16, 2008 at 01:59 UTC | |
by Corion (Patriarch) on Mar 16, 2008 at 09:17 UTC | |
by kyle (Abbot) on Mar 16, 2008 at 19:37 UTC | |
by Narveson (Chaplain) on Mar 16, 2008 at 22:30 UTC |