gpt4 book ai didi

c# - 如何使用 FtpWebRequest 正确断开与 FTP 服务器的连接

转载 作者:太空狗 更新时间:2023-10-29 21:08:46 24 4
gpt4 key购买 nike

我创建了一个 ftp 客户端,它在一天中多次连接以从 FTP 服务器检索日志文件。

问题是,几个小时后我从 FTP 服务器收到一条错误消息(达到 -421 session 限制..)。当我使用 netstat 检查连接时,我可以看到几个与服务器的“已建立”连接,即使我已经“关闭”了连接。

当我尝试通过命令行或 FileZilla 执行相同操作时,连接已正确关闭。

ftpRequest = (FtpWebRequest)FtpWebRequest.Create(host + "/" + remoteFile);
ftpRequest.Credentials = new NetworkCredential(user, pass);
ftpRequest.UseBinary = true;
ftpRequest.UsePassive = true;
ftpRequest.KeepAlive = true;
ftpRequest.Method = WebRequestMethods.Ftp.DownloadFile;
ftpResponse = (FtpWebResponse)ftpRequest.GetResponse();
ftpStream = ftpResponse.GetResponseStream();
FileStream localFileStream = new FileStream(localFile, FileMode.Create);
int bytesRead = ftpStream.Read(byteBuffer, 0, bufferSize);
/* Resource Cleanup */

localFileStream.Close();
ftpStream.Close();
ftpResponse.Close();
ftpRequest = null;

如何正确关闭/断开连接?我是不是忘记了什么?

最佳答案

尝试设置 FtpWebRequest.KeepAlive属性为假。如果 KeepAlive 设置为 false,则在请求完成时将关闭与服务器的控制连接。

ftpWebRequest.KeepAlive = false;

关于c# - 如何使用 FtpWebRequest 正确断开与 FTP 服务器的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24050381/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com