So einfach geht das ganze
Delphi-Quellcode:
idftp1.Username := '
Anonymous';
idftp1.Password := '
getaccess';
idftp1.Connect(True, 20000);
idftp1.ChangeDir('
YourDestPathOnFTPServer');
idftp1.TransferType := ftASCII;
//wenn du ascii-dateien übertragen willst (unit: idftpCommon)
idftp1.Put('
c:\config.sys', '
config.sys');
idftp1.Disconnect;