大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章主要为大家展示了“C#如何解决连接FTP时的路径问题”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“C#如何解决连接FTP时的路径问题”这篇文章吧。
10年积累的成都网站设计、成都做网站经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站制作后付款的网站建设流程,更有三门免费网站建设让你可以放心的选择与我们合作。判断的代码如下:
////// 测试是否可以成功连接FTP和判断文件是否存在 /// /// FTP上文件地址 /// FTP登陆用户名 /// FTP登陆密码 /// 返回错误消息 ///private bool IsCanConnectFtp(string ftpServerFilePath, string ftpUserId, string ftpPwd, out string errorMsg) { bool flag = true; FtpWebResponse ftpResponse = null; FtpWebRequest ftpRequest = null; errorMsg = string.Empty; try { ftpRequest = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerFilePath)); ftpRequest.Method = WebRequestMethods.Ftp.ListDirectory; ftpRequest.Timeout = 2 * 1000;//超时时间设置为2秒。 ftpRequest.Credentials = new NetworkCredential(ftpUserId, ftpPwd); ftpResponse = (FtpWebResponse)ftpRequest.GetResponse(); } catch (WebException exception) { ftpResponse = (FtpWebResponse)exception.Response; switch (ftpResponse.StatusCode) { case FtpStatusCode.ActionNotTakenFileUnavailable: errorMsg = "下载的文件不存在"; break; case FtpStatusCode.ActionNotTakenFileUnavailableOrBusy: errorMsg = "下载的文件正在使用,请稍后再试"; break; default: errorMsg = "发生未知错误"; break; } flag = false; } catch { errorMsg = "网络连接发生错误,请稍后再试"; flag = true; } finally { if (ftpResponse != null) { ftpResponse.Close(); } } return flag; }
当 ftpServerFilePath 的路径为 “127.0.0.1\1.doc”, 这样进行传参时,就会抛异常,异常内容为无效的URi,如下图
解决方法
这是因为FtpWebRequest.Create
连接时不能识别'\' 这样的文件路径标识符,才会抛出上面的异常,因此传入的参数应该为”127.0.0.1/1.doc”。或者在方法里面进行替换。代码如下所示:
ftpRequest = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerFilePath.Replace("\\","/")));
这样就不会跑异常,至于能否连接或者文件是否存在,请自行查看连接
https://msdn.microsoft.com/zh-cn/library/system.net.ftpstatuscode(v=vs.110).aspx
或者自行 google FtpStatusCode 即可。
那么修改后的代码为:(关于C# 连接完整的FTP 可以仔细 google 查询,网上多的是,这样就不累述了)
////// 测试是否可以成功连接FTP和判断文件是否存在 /// /// FTP上文件地址 /// FTP登陆用户名 /// FTP登陆密码 /// 返回错误消息 ///private bool IsCanConnectFtp(string ftpServerFilePath, string ftpUserId, string ftpPwd, out string errorMsg) { bool flag = true; FtpWebResponse ftpResponse = null; FtpWebRequest ftpRequest = null; errorMsg = string.Empty; try { ftpRequest = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerFilePath.Replace("\\","/"))); ftpRequest.Method = WebRequestMethods.Ftp.ListDirectory; ftpRequest.Timeout = 2 * 1000;//超时时间设置为2秒。 ftpRequest.Credentials = new NetworkCredential(ftpUserId, ftpPwd); ftpResponse = (FtpWebResponse)ftpRequest.GetResponse(); } catch (WebException exception) { ftpResponse = (FtpWebResponse)exception.Response; switch (ftpResponse.StatusCode) { case FtpStatusCode.ActionNotTakenFileUnavailable: errorMsg = "下载的文件不存在"; break; case FtpStatusCode.ActionNotTakenFileUnavailableOrBusy: errorMsg = "下载的文件正在使用,请稍后再试"; break; default: errorMsg = "发生未知错误"; break; } flag = false; } catch { errorMsg = "网络连接发生错误,请稍后再试"; flag = true; } finally { if (ftpResponse != null) { ftpResponse.Close(); } } return flag; }
以上是“C#如何解决连接FTP时的路径问题”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注创新互联成都网站建设公司行业资讯频道!
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。