Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure Tfdw.Button1Click(Sender: TObject);
begin
ftp1.Connect();
ftp1.Get('/FtpFolder/FileNAme.withExtension',
'c:\YourLocalForlder\LocalFileName.extension',true,false);
ftp1.Disconnect;
end;