I\'m trying to programatically download a file in C# via FTP, here is the relevant code (obviously with fake credntials and URI):
try { var request = Ftp
You have not set the Method.
Method
request.Method = WebRequestMethods.Ftp.DownloadFile;