[RESOLVED] Download a file from a ftp server in visual basic 2008
Hello,
Would it be something like this
Code:
My.Computer.Network.DownloadFile("ftp://My.Site.com")
Re: Download a file from a ftp server in visual basic 2008
My.Computer.Network.DownloadFile("ftp://My.Site.com","C:\Program.exe")
or replace program.exe with any file it is, it has to be the same file extension as it is on the FTP.
My.Computer.Network.DownloadFile("ftp://My.Site.com/textfile.txt","C:\test.txt")
good luck?
Re: Download a file from a ftp server in visual basic 2008