|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Net::FTP passive list
I'm trying to get passive listing with the following:
$src->pasv(); @list = $src->list(); foreach $line (@list) { print "$line\n"; } However, all I get is a '1', which by documentation holds true. How on earth do I connect to the passive port, or *should* Net::FTP do this for me? J |
|
#2
|
|||
|
|||
|
Try using ls() instead of list().
Code:
my @list = $src->ls(); jaa |
![]() |
| Viewing: Dev Shed Forums > System Administration > FTP Help > Net::FTP passive list |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|