FtpWebRequest Download File

I know this is an old Post but I am adding here for future reference. Here is a solution that I found: private void DownloadFileFTP() { string inputfilepath = @”C:\Temp\FileName.exe”; string ftphost = “xxx.xx.x.xxx”; string ftpfilepath = “/Updater/Dir1/FileName.exe”; string ftpfullpath = “ftp://” + ftphost + ftpfilepath; using (WebClient request = new WebClient()) { request.Credentials = … Read more