Thread Per FTP Datei kopieren? (11 answers)
Opened by bianca at 2011-03-16 20:37

topeg
 2011-03-20 17:49
#146678 #146678
User since
2006-07-10
2611 Artikel
BenutzerIn

user image
Hast du schon if($ftp->supported("CPFR") && $ftp->supported("CPTO")){...} probiert?

oder:
Code (perl): (dl )
1
2
3
4
if($ftp->command('CPFR', 'pfad1/test_ftp.pl') && $ftp->command('CPTO','pfad2/test.pl') && $ftp->response() == Net::Cmd::CMD_OK)
{
  ...
}


Mehr wüste ich so ohne weiteres auch nicht.
Ich habe es nur einmal benutzt auf einem FTP-Server den ich selber eingerichtet hatte.

View full thread Per FTP Datei kopieren?