您将如何使用FTPES协议连接到FTP服务器,然后上传文件?
我在网上找到了这个
using (WebClient client = new WebClient())
{
client.Credentials = new NetworkCredential(ftpUsername, ftpPassword);
client.UploadFile("ftp://ftpserver.com/target.zip", WebRequestMethods.Ftp.UploadFile, localFilePath);
}
...但是它仅适用于普通ftp。
我没有找到适合ftpes的方法的运气。