Downloading an .exe file from an FTP server?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Nocturnal
    Forum Member
    • Jun 2006
    • 29

    Downloading an .exe file from an FTP server?

    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
    No longer a forum member
    • Oct 2007
    • 1322

    #2
    Use the FTP Action Plugin.

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

    Comment

    • cdlink14
      Forum Member
      • Aug 2008
      • 31

      #3
      Don't forget to go to " Project > Plugins " and tick the " FTP " plugin first.

      Comment

      • Nocturnal
        Forum Member
        • Jun 2006
        • 29

        #4
        Thank you.

        Comment

        Working...
        X