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

时间:2022-06-01 18:18:52

前言

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

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

判断的代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/// <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,如下图

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

解决方法

这是因为ftpwebrequest.create 连接时不能识别'\' 这样的文件路径标识符,才会抛出上面的异常,因此传入的参数应该为”127.0.0.1/1.doc”。或者在方法里面进行替换。代码如下所示:

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/// <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.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;
 }

总结

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

原文链接:http://blog.csdn.net/u010533180/article/details/51697353