Instead of using ftp://server/path
as the uri, try ftp://server/%2fpath/
.
The added %2f
" is just an escaped /
, adding this will make C# treat the whole path as absolute. Or else C# will login to ftp://server/
with the username, go to the user's home folder, then cd to your specified path.
作者:MaoBisheng
出处:http://maobisheng.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
出处:http://maobisheng.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。