关于C#连接FTP时路径问题的解决方法

关于C#连接FTP时路径问题的解决方法,第1张

概述前言本文主要给大家介绍了关于C#连接FTP时路径问题的相关内容,分享出来供大家参考学习,话不多说,来一起看看详细的介绍:

前言

本文主要给大家介绍了关于C#连接FTP时路径问题的相关内容,分享出来供大家参考学习,话不多说,来一起看看详细的介绍:

今天在开发项目时,需要连接FTP获取文件,其中关键的一步就是判断能否连接FTP以及FTP上的文件是否存在

判断的代码如下:

/// <summary>  /// 测试是否可以成功连接FTP和判断文件是否存在  /// </summary>  /// <param name="ftpServerfilePath">FTP上文件地址</param>  /// <param name="ftpUserID">FTP登陆用户名</param>  /// <param name="ftpPwd">FTP登陆密码</param>  /// <param name="errorMsg">返回错误消息</param>  /// <returns></returns>  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,如下图

@R_404_6120@

这是因为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 查询,网上多的是,这样就不累述了)

 /// <summary>  /// 测试是否可以成功连接FTP和判断文件是否存在  /// </summary>  /// <param name="ftpServerfilePath">FTP上文件地址</param>  /// <param name="ftpUserID">FTP登陆用户名</param>  /// <param name="ftpPwd">FTP登陆密码</param>  /// <param name="errorMsg">返回错误消息</param>  /// <returns></returns>  private bool IsCanConnectFtp(string ftpServerfilePath,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,请稍后再试";    flag = true;   }   finally   {    if (ftpResponse != null)    {     ftpResponse.Close();    }   }   return flag;  }

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对编程小技巧的支持

总结

以上是内存溢出为你收集整理的关于C#连接FTP时路径问题的解决方法全部内容,希望文章能够帮你解决关于C#连接FTP时路径问题的解决方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1255512.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存