in reply to Net::FTP::Recursive - how to use rls
The filehandle is what the open command creates, FH in your case. I suggest two things to try: (a) remove the <> around FH, and (b) include the parameter name.
$ftp->rls(FH) or die $ftp->message; $ftp->rls(Filehandle=>FH) or die $ftp->message;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Net::FTP::Recursive - how to use rls
by Discipulus (Canon) on Oct 21, 2014 at 07:27 UTC |