当我尝试使用 VS2008 作为调试器从 C# 代码 FTP 到我的 Win 2008 服务器时,我不断收到异常。
我的测试类如下所示:
public class FTP
{
private string ftpServerIP = "192.168.10.35:21";
private string ftpUserID = "Administrator";
private string ftpPassword = "XXXXXXXX";
private string uploadToFolder = "uploadtest";
public void Upload(string filename)
{
FileInfo fileInf = new FileInfo(filename);
string uri = "ftp://" + ftpServerIP + "/" + uploadToFolder + "/" + fileInf.Name;
FtpWebRequest reqFTP;
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(uri));
reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);
reqFTP.KeepAlive = false;
reqFTP.Method = WebRequestMethods.Ftp.UploadFile;
reqFTP.UseBinary = true;
reqFTP.ContentLength = fileInf.Length;
int buffLength = 2048;
byte[] buff = new byte[buffLength];
int contentLen;
FileStream fs = fileInf.OpenRead();
try
{
Stream strm = reqFTP.GetRequestStream();
contentLen = fs.Read(buff, 0, buffLength);
while (contentLen != 0)
{
strm.Write(buff, 0, contentLen);
contentLen = fs.Read(buff, 0, buffLength);
}
strm.Close();
fs.Close();
}
catch (Exception ex)
{
throw new Exception(ex.Message);
}
}
}
当我执行代码时,我在 GetRequestStream() 调用中收到一个连接失败并出现 FTP 错误 227。在异常中,我可以看到连接失败:192.168.10.35:52184
我不知道它是如何产生端口 52184 的。我在 ftpServerIP 中指定它应该是端口 21。
我在 google 上发现了一些有同样问题的人,但我没有找到一个很好的例子来说明如何解决这个问题,我仍然不明白为什么会发生这种情况。
有谁知道如何处理这个问题??
更新:
我尝试连接到不同的 FTP 帐户,一切正常。因此我测试了我的 192.168.10.35:21 FTP,但它在 CuteFTP Pro 等中运行良好。这只会让它更加奇怪..