in reply to special context of file names in array?
use strict; use warnings;
Also have you opened the file TOCOUT for writing, anywhere?
also: I think the code
foreach my $filepage (@dirarray) {...};
foreach (@dirarray) { my $filepage = $_; .. }
instead of the $filepage=shift(@dirarray);
I hope this helps you along.
-Enlil
|
|---|