This code fails. Any help please. Thanks
using System.net
using System.IO
string uri = "https://xyzabc.com//Mats//";
FtpWebRequest reqFTP;
// Create FtpWebRequest object from the Uri provided
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(uri));
This is not possible, because FtpWebRequest doesn't have a method called
Create
Try it with
WebRequest
: