我正在尝试将文件上传到ftp服务器。尝试了一些代码示例,但总是得到这个错误,进入被动模式。例如,我可以使用此代码
创建一个目录FtpWebRequest reqFTP;
try
{
// dirName = name of the directory to create.
reqFTP = (FtpWebRequest)FtpWebRequest.Create(
new Uri("ftp://" + ftpServerIP + "/" + dirName));
reqFTP.Method = WebRequestMethods.Ftp.MakeDirectory;
reqFTP.UseBinary = true;
reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);
reqFTP.UsePassive = false;
FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse();
Stream ftpStream = response.GetResponseStream();
ftpStream.Close();
response.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
或者例如我可以重命名文件。但无法使用此代码上传文件
string uri = "ftp://" + ftpServerIP + "/" + fileInf.Name;
FtpWebRequest reqFTP;
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(
"ftp://" + ftpServerIP + "/" + fileInf.Name));
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)
{
MessageBox.Show(ex.Message, "Upload Error");
}
在reqFTP.GetRequestStream()
处获得异常。
如果我使用reqFTP.UsePassive=false
,那么我会得到“
远程服务器返回错误:(500)语法错误,命令无法识别“。
我该怎么办?
答案 0 :(得分:1)
试试这个例子
如果将UsePassive设置为false,则需要确保命令通道的端口已打开(即,您需要定义端点和访问规则)。除非有充分的理由不使用被动,否则你最好不要使用被动。
希望它会有所帮助。
答案 1 :(得分:0)
所以,我知道这是一个较晚的答案,但是我想分享我的经验,以防有人遇到同样的事情。
就我而言,我正在从Windows Server 2016下载一些文件。出于安全原因,我激活了防火墙,当然我向防火墙添加了入站规则以允许20和21个端口。
我有一个相同的著名错误:227进入被动模式。 我检查了代码,但错误中始终指示有一些不同的端口。
经过一番搜索,我发现我必须在允许的端口之间添加49152-65534。
它奏效了。
这是我的代码
public static bool DownloadDocument(string ftpPath, string downloadPath)
{
bool retVal = false;
try
{
if (!Directory.Exists(Tools.LocalPath))
Directory.CreateDirectory(Tools.LocalPath);
using (WebClient client = new WebClient())
{
client.Credentials = new NetworkCredential(Tools.FtpUserName, Tools.FtpPassword);
client.DownloadFile(ftpPath, downloadPath);
}
retVal = true;
}
catch (Exception ex)
{
UserMethods.ParseError(ex, "DownloadFile");
}
return retVal;
}