溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C#連接FTP時(shí)路徑出現(xiàn)問(wèn)題怎么辦

發(fā)布時(shí)間:2020-08-11 15:33:46 來(lái)源:億速云 閱讀:207 作者:小新 欄目:編程語(yǔ)言

小編給大家分享一下C#連接FTP時(shí)路徑出現(xiàn)問(wèn)題怎么辦,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

最近在工作中遇到一個(gè)需求,需要利用C#連接FTP,在連接過(guò)程中遇到一個(gè)問(wèn)題,所以下面這篇文章主要給大家介紹了關(guān)于C#連接FTP時(shí)路徑問(wèn)題的解決方法,需要的朋友可以參考借鑒,下面來(lái)一起看看吧。

今天在開發(fā)項(xiàng)目時(shí),需要連接FTP獲取文件,其中關(guān)鍵的一步就是判斷能否連接FTP以及FTP上的文件是否存在

判斷的代碼如下:

/// <summary>
  /// 測(cè)試是否可以成功連接FTP和判斷文件是否存在
  /// </summary>
  /// <param name="ftpServerFilePath">FTP上文件地址</param>
  /// <param name="ftpUserId">FTP登陸用戶名</param>
  /// <param name="ftpPwd">FTP登陸密碼</param>
  /// <param name="errorMsg">返回錯(cuò)誤消息</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;//超時(shí)時(shí)間設(shè)置為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 = "下載的文件正在使用,請(qǐng)稍后再試";
      break;
     default:
      errorMsg = "發(fā)生未知錯(cuò)誤";
      break;
    }
    flag = false;
   }
   catch
   {
    errorMsg = "網(wǎng)絡(luò)連接發(fā)生錯(cuò)誤,請(qǐng)稍后再試";
    flag = true;
   }
   finally
   {
    if (ftpResponse != null)
    {
     ftpResponse.Close();
    }
   }
   return flag;
  }

當(dāng) ftpServerFilePath 的路徑為 “127.0.0.1\1.doc”, 這樣進(jìn)行傳參時(shí),就會(huì)拋異常,異常內(nèi)容為無(wú)效的URi,如下圖

C#連接FTP時(shí)路徑出現(xiàn)問(wèn)題怎么辦

解決方法

這是因?yàn)?code>FtpWebRequest.Create 連接時(shí)不能識(shí)別'\' 這樣的文件路徑標(biāo)識(shí)符,才會(huì)拋出上面的異常,因此傳入的參數(shù)應(yīng)該為”127.0.0.1/1.doc”?;蛘咴诜椒ɡ锩孢M(jìn)行替換。代碼如下所示:

 ftpRequest = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerFilePath.Replace("\\","/")));

這樣就不會(huì)跑異常,至于能否連接或者文件是否存在,請(qǐng)自行查看連接

https://msdn.microsoft.com/zh-cn/library/system.net.ftpstatuscode(v=vs.110).aspx

或者自行 google FtpStatusCode 即可。

那么修改后的代碼為:(關(guān)于C# 連接完整的FTP 可以仔細(xì) google 查詢,網(wǎng)上多的是,這樣就不累述了)

 /// <summary>
  /// 測(cè)試是否可以成功連接FTP和判斷文件是否存在
  /// </summary>
  /// <param name="ftpServerFilePath">FTP上文件地址</param>
  /// <param name="ftpUserId">FTP登陸用戶名</param>
  /// <param name="ftpPwd">FTP登陸密碼</param>
  /// <param name="errorMsg">返回錯(cuò)誤消息</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;//超時(shí)時(shí)間設(shè)置為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 = "下載的文件正在使用,請(qǐng)稍后再試";
      break;
     default:
      errorMsg = "發(fā)生未知錯(cuò)誤";
      break;
    }
    flag = false;
   }
   catch
   {
    errorMsg = "網(wǎng)絡(luò)連接發(fā)生錯(cuò)誤,請(qǐng)稍后再試";
    flag = true;
   }
   finally
   {
    if (ftpResponse != null)
    {
     ftpResponse.Close();
    }
   }
   return flag;
  }

看完了這篇文章,相信你對(duì)C#連接FTP時(shí)路徑出現(xiàn)問(wèn)題怎么辦有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI