我目前正在使用FTPwebRequest
将本地文件移动到服务器。我可以 FTP 到ftp://ftp.xxxx.com的根目录。但是,每当我尝试将文件 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/chang-to-the-root-directory-with-ftpwebrequest
https://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest(v=vs.110).aspx