4
I have some files on an FTP server at Hostinger, and these files were left there as links from FTP servers never change. As they are very important to make updates in my application, Delphi should download them.
4
I have some files on an FTP server at Hostinger, and these files were left there as links from FTP servers never change. As they are very important to make updates in my application, Delphi should download them.
1
You can do it with the component Tidftp. Ex.:
IdFTP1.Disconnect();
IdFTP1.Host := 'ftp.seuftp.com';
IdFTP1.Port := 21;
IdFTP1.Username := 'usuario';
IdFTP1.Password := 'senha';
IdFTP1.Passive := true;
IdFTP1.Connect(true, 10000);
IdFTP1.Get (arquivoNoServidor, arquivoDestino, true, false);
Browser other questions tagged delphi ftp download delphi-xe6
You are not signed in. Login or sign up in order to post.
Which version of Delphi you’re using?
– Guybrush