in reply to Re^4: Net::Ftp Issue
in thread Net::Ftp Issue
$ftp->ls() returns an array or array reference depending on context. You should be getting an array reference they way you're calling it (and something like "ARRAY(0x401fa298)" the way you're printing it). If that's the problem then you can print "$_\n" for $ftp->ls(). If you're really getting nothing, then you have a different problem.