in reply to Net::FTP Server does not support cwd...alternatives?
$ftpBox->get("$remotedir/$filename","$destination_dir/$filename") or die "failed to get $filename to $destination_file";
If your just interested in checking to see if a directory exists. Then an ls or dir is almost as good as cd.
Updated: Added a little more info.$ftpBox->ls($remotedir); #or $ftpBox->dir($remotedir);
|
|---|