Subject: | Doesn't work when server response for listing request doesn't contains "." - current directory |
Yes, there are such FTP servers which response for "LIST" command
doesn't contains neither ".", nor ".." directory. But this situation is
not considered in this module. Problem is somewere around this statement:
if ($depth == 0) {
next if $_ ne '.';
$_ = $directory;
}
All directories skipped becouse of "next" command.
I could give you access to one of such FTP server if you need some tests.