Subject: | Recurse and samba |
When attempting to use Recurse on a smbfs mounted filesystem I am only able to get results from the first level. It stops before going any deeper - I am using following syntax:
my %files = Recurse(["/mnt/SAMBADIR"], {match => '\.php', nomatch => '\.db'});
which outputs the 1st level only when using:
foreach (sort keys %files)
{
print "Dir: $_\n";
foreach (@{ $files{$_} })
{
print " File: $_\n";
}
}
Hope you can help
Simon