我正在尝试编写一个程序,它将从FTP下载一些文件,压缩它们然后再将它们上传到同一个FTP位置。
我有尝试下载文件。如果失败,它将再次尝试。
如果没有错误发生,所有文件都下载并上传文件。
如果下载时出现任何错误,它会在重新尝试时下载,但无法上传。
我认为问题归咎于没有正确关闭连接,但我不能为我的生活弄明白。
这是我的代码;我添加了失败的地方:
上载:
FileInfo fileInf = new FileInfo("directory" + zip + ".zip");
string uri = "ftp://address" + fileInf.Name;
FtpWebRequest reqFTP2;
reqFTP2 = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://address" + fileInf.Name));
reqFTP2.Credentials = new NetworkCredential("username", "password");
reqFTP2.KeepAlive = true;
reqFTP2.Method = WebRequestMethods.Ftp.UploadFile;
reqFTP2.UseBinary = true;
reqFTP2.ContentLength = fileInf.Length;
int buffLength = 2048;
byte[] buff = new byte[buffLength];
int contentLen;
FileStream fs = fileInf.OpenRead();
try
{
Stream strm = reqFTP2.GetRequestStream(); //FAILS HERE
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)
{
}
下载:
int errorOccured = 0;
while (errorOccured < 1)
{
FileStream outputStream = new FileStream("directory\\" + file, FileMode.Create);
FtpWebRequest reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://address/" + file));
reqFTP.Credentials = new NetworkCredential("username", "password");
try
{
reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;
reqFTP.UseBinary = true;
FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse();
Stream ftpStream = response.GetResponseStream();
long cl = response.ContentLength;
int bufferSize = 2048;
int readCount;
byte[] buffer = new byte[bufferSize];
readCount = ftpStream.Read(buffer, 0, bufferSize);
while (readCount > 0)
{
outputStream.Write(buffer, 0, readCount);
readCount = ftpStream.Read(buffer, 0, bufferSize);
}
ftpStream.Close();
outputStream.Close();
response.Close();
errorOccured++;
}
catch (Exception er)
{
outputStream.Close();
}
答案 0 :(得分:1)
错误504 - 未对该参数执行命令。
表示您在其中使用的某些选项未由目标FTP服务器实现。我认为您的代码导致了一个奇怪的请求,建议是查看您的进程在服务器端创建的FTP聊天。例如,服务器是否支持PASV模式? ACTV模式下的FTP协议(默认行为)总是很痛苦,因为它明确地导致客户端在端口20上打开“文件接收端口”并进行侦听。虽然大多数服务器支持PASV模式传输,但如果您没有明确地将它们置于PASV模式,则会很麻烦。所以看看聊天,查看服务器是否处于PASV模式,如果仍然有问题,请查看聊天内容,看看在FTP协商过程中是否有“额外空间”传递。 FTP非常小,可能存在一些陷阱。 :-)
答案 1 :(得分:0)
对于初学者,将您的流包裹在using
块中,以便适当地处理它们。
有关详细信息,请参阅MSDN。