FTP文件到服务器

时间:2018-01-09 18:16:49

标签: c# ftp ftpwebrequest ftpwebresponse

我目前正在使用FTPwebRequest将本地文件移到服务器上。我可以通过ftp://ftp.xxxx.com FTP到根目录。但是,每当我尝试将文件FTP到该目录中的文件夹时,如:ftp://ftp.xxxx.com/firstfolder没有任何反应。我没有在代码中得到任何硬停止,我还设置了一个FTPwebResponse,说明传输已完成。

string dest = "ftp://username:password@ftp.xxxx.com/firstfolder/" + fileName;

ftp = (FtpWebRequest)FtpWebRequest.Create(dest);

我也尝试使用%2f来模仿CD命令。

以下是我一直在看的一些没有运气的链接: https://blogs.msdn.microsoft.com/mariya/2006/03/06/changing-to-the-root-directory-with-ftpwebrequest

https://social.msdn.microsoft.com/Forums/en-US/91e2bed0-9e5e-4503-9e66-d224086e43a8/change-directory-with-ftpwebrequest

https://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest(v=vs.110).aspx

1 个答案:

答案 0 :(得分:0)

在IE中,文件未出现在servers目录中。我使用谷歌浏览器,我能够成功查看该文件。这是上传时间。