Einzelnen Beitrag anzeigen

Stewag

Registriert seit: 12. Jun 2008
161 Beiträge
 
Delphi 12 Athens
 
#24

AW: Datei auf FTP Server OHNE Indy

  Alt 6. Jul 2021, 08:07
I now used Indy TIdFTP to Upload file to FTP successfully.

Code:
with IdFTP1 do
  begin
    Host := [ftp server name];
    User := [User];
    Password := [PW];
    Passive := true;
    Connect;
    Put(sourcefilename, targetfilename_withpath)
  end;
As you mentioned, no SSL libs necessary with regular FTP.
Thank you for your advice!
Steffen
  Mit Zitat antworten Zitat