in reply to Re^2: Net::FTP::Recursive code not downloading files
in thread Net::FTP::Recursive code not downloading files
I suspect your MatchDirs may be preventing the recursion. If the matching doesn't use the full path then the subdirectory names won't include the parent directory names.
MatchDirs => qr/PowerEdge R810|R610|R720|R620|M620|M1000E)/,
If that is the case, then you need to run your code on these 6 directories separately.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Net::FTP::Recursive code not downloading files
by bowei_99 (Friar) on Dec 13, 2013 at 03:44 UTC | |
by wazat (Monk) on Dec 13, 2013 at 04:01 UTC | |
by tangent (Parson) on Dec 14, 2013 at 12:15 UTC |