I am trying to access an ftp site via c# but I am having difficulty connecting to the site thru code. I'm using ipswitch ftp tool to view the files, the address shows ftp-authssl://ftps5.XXXX.com/{UserName} after connection. I took the address and have tried many combinations using the code below:
FtpWebRequest request = (FtpWebRequest)WebRequest.Create(RemoteFtpPath);
request.Method = WebRequestMethods.Ftp.DownloadFile;
The error that I am getting is when I run the url mentioned above with the WebRequest.Create I get an error of URI prefix not recognized. Any help Thanks