hier mal ein bsp. von mir wie ich des mitm download von einer datei mach
Delphi-Quellcode:
Try
FTP.ChangeDir(edt_ftpDirdow.Text);
If rdbtn_ascii.Checked = True
Then
Begin
FTP.TransferType := ftASCII;
End
Else If rdbtn_binary.Checked = True
Then
Begin
FTP.TransferType := ftBINARY;
End;
FTP.Get('
Datei1.txt', '
C:\Temp\Datei1.txt', True, False);
Except
MessageDlg('
Download was not successfull!', mtWarning, [mbOk], 0);
blDownload := False;
End;
vielleicht hilft dir das?!