使用 FtpWebRequest 下载 FTP

发布于 2024-11-01 04:20:32 字数 531 浏览 3 评论 0原文

我使用此代码通过 FTP 下载文件:

FtpWebRequest reqFTP; reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + IPServer + "/")); 
reqFTP.UseBinary = true; 
reqFTP.Credentials = new NetworkCredential(user, pass); 
reqFTP.Method = WebRequestMethods.Ftp.ListDirectory; 
reqFTP.Proxy = null; 
reqFTP.KeepAlive = false; 
reqFTP.UsePassive = false; 
response = reqFTP.GetResponse();

但我有一个问题。我的凭据将创建我的用户的主文件夹。我必须返回根文件夹并选择特定文件夹来下载文件。 我如何在 Uri 中指定我需要返回?

我尝试使用这个 /../ 但不起作用...

有什么帮助吗?

I use this code to download a file by FTP:

FtpWebRequest reqFTP; reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + IPServer + "/")); 
reqFTP.UseBinary = true; 
reqFTP.Credentials = new NetworkCredential(user, pass); 
reqFTP.Method = WebRequestMethods.Ftp.ListDirectory; 
reqFTP.Proxy = null; 
reqFTP.KeepAlive = false; 
reqFTP.UsePassive = false; 
response = reqFTP.GetResponse();

But I have a problem. My credentials will make my user's home folder. I must go back to the root folder and select the specific folder to download the file.
how i specified in the Uri that i need go back?

I tried to use this /../ but is not working...

Little help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人海汹涌 2024-11-08 04:20:32

这与您的代码无关...

ftp 服务器决定 ftp 根文件夹是什么。

对于您的凭据,这似乎是用户的主目录。

如果您想更改它,请检查 ftp-server 文档和配置

this has nothing to do with your code ...

the ftp-server decides what's the ftp root folder.

for your credentials that seems to be that users home dir.

if you want to change that, check the ftp-server docs & config

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文