2

我正在尝试使用 FtpWebRequest 来获取公司 FTP 上文件的大小。然而,每当我尝试获得响应时,都会引发异常。请参阅下面代码中的 catch 块中的错误详细信息。

string uri = "ftp://ftp.domain.com/folder/folder/file.xxx";
FtpWebRequest sizeReq = (FtpWebRequest)WebRequest.Create(uri);
sizeReq.Method = WebRequestMethods.Ftp.GetFileSize;
sizeReq.Credentials = cred;
sizeReq.UsePassive = proj.ServerConfig.UsePassive; //true
sizeReq.UseBinary = proj.ServerConfig.UseBinary; //true
sizeReq.KeepAlive = proj.ServerConfig.KeepAlive; //false

long size;

try
{
//Exception thrown here when I try to get the response
using (FtpWebResponse fileSizeResponse = (FtpWebResponse)sizeReq.GetResponse())
{
size = fileSizeResponse.ContentLength;
}
}
catch(WebException exp)
{
FtpWebResponse resp = (FtpWebResponse)exp.Response;
MessageBox.Show(exp.Message); // "The remote server returned an error: (550) File unavailable (e.g., file not found, no access)."
MessageBox.Show(exp.Status.ToString()); //ProtcolError
MessageBox.Show(resp.StatusCode.ToString()); // ActionNotTakenFileUnavailable
MessageBox.Show(resp.StatusDescription.ToString()); //"550 SIZE: Operation not permitted\r\n"
}

但是,当连接到我的个人 FTP 时,此代码确实有效。响应的 StatusDescription 表示该操作“不允许”。难道是我的办公室 FTP 不允许查询文件大小?

我还尝试列出将返回大小的目录详细信息,并注意到我的办公室 FTP 以与我的个人 FTP 不同的格式报告目录详细信息。也许这就是问题所在?

//work ftp ListDirectoryDetails
-rw-r--r--   1 (?)      user    12345 Nov 16 20:28 some file name.xxx

//personal ftp ListDirectoryDetails
-rw-r--r--    1 user user 12345 Mar 13  some file name.xxx

通过阅读这篇博文,我认为我的个人 ftp 正在返回 Unix 格式的响应,但我的工作正在返回 Windows 格式的响应。也许这无关紧要,但我想我会提到它。

4

3 回答 3

3

由于文件的基本命名,我遇到了问题:当您连接到 FTP 服务器时,您可能会将 Uri 指定为“ftp//ftp.domain.com/somedirectory”,但这会转换为:“ftp://ftp.domain.com /homedirectoryforftp/somedirectory”。为了能够定义完整的根目录,请使用“ftp://ftp.domain.com//somedirectory”,它转换为机器上的//somedirectory。

于 2010-09-24T17:16:01.297 回答
1

处理登录后,我想到了它,并获得了一个默认用户目录作为当前目录。我将完整路径指定为 uri,包括我的用户目录。我用WireShark追踪它,你可能会发现相同的结果。

于 2009-12-03T17:32:09.300 回答
0

看起来在工作 FTP 上您没有指定所有者帐户,因此被拒绝。

于 2009-11-16T23:54:37.740 回答