Code:
use File::Find;
my $test = 1;
my $test3;
my $dir = 'c:/temp';
find(\&wanted, $dir);
for (0..0) {
my $test2 = 2;
find(\&wanted2, $dir);
}
for (0..0) {
$test3 = 3;
find(\&wanted3, $dir);
}
sub wanted {
print "T1:$test\n";
}
sub wanted2 {
print "T2:$test2\n";
}
sub wanted3 {
print "T3:$test3\n";
}
output:
T1:1
T1:1
T2:
T2:
T3:3
T3:3
It's as if File::Find only sees the variables scoped at the highest level. I have tried passing my data to the subroutine \&wanted($test2) but I get errors back from File::Find.
Has anyone else ran into this or know a easy fix, I hate scoping the variable way out side of where they need to be just for File::Find.
Thanks!!
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
![[noevil] [noevil] [noevil]](/data/assets/smilies/noevil.gif)
Travis - Those who say it cannot be done are usually interrupted by someone else doing it; Give the wrong symptoms, get the wrong solutions;