PDA

View Full Version : Downloading an .exe file from an FTP server?


Nocturnal
02-13-2009, 03:07 PM
Is it possible somehow download a file from an FTP server as opposed to an HTTP.file function?

I'm trying to download several programs from the net which will aid me and my colleagues in removing spyware and viruses.

There are a lot of .exe files but one in particular is located on an FTP server.

Thanks.

ShadowUK
02-13-2009, 03:24 PM
Use the FTP Action Plugin.

FTP.Connect("host", "user", "pass");
FTP.Download("really/cool/program.exe", _TempFolder.."\\program");

cdlink14
02-13-2009, 06:24 PM
Don't forget to go to " Project > Plugins " and tick the " FTP " plugin first.

Nocturnal
02-14-2009, 04:42 PM
Thank you.