如何通过TLS(显式)连接到FTP服务器并将文件上传到其中[C#]

时间:2019-07-04 12:45:22

标签: c# ftp ftpes

您将如何使用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的方法的运气。

0 个答案:

没有答案