1

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

4

0 回答 0