现有的答案是有效的,但是为什么要重新发明轮子并打扰较低级别的
WebRequest类型,而又
WebClient已经巧妙地实现了FTP上传:
using (var client = new WebClient()){ client.Credentials = new NetworkCredential(ftpUsername, ftpPassword); client.UploadFile("ftp://host/path.zip", WebRequestMethods.Ftp.UploadFile, localFile);}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)