這篇文章主要為大家展示了“C#如何解決連接FTP時(shí)的路徑問(wèn)題”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“C#如何解決連接FTP時(shí)的路徑問(wèn)題”這篇文章吧。
10年積累的成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有三門免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。判斷的代碼如下:
////// 測(cè)試是否可以成功連接FTP和判斷文件是否存在 /// /// FTP上文件地址 /// FTP登陸用戶名 /// FTP登陸密碼 /// 返回錯(cuò)誤消息 ///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,如下圖
解決方法
這是因?yàn)?code>FtpWebRequest.Create 連接時(shí)不能識(shí)別'\' 這樣的文件路徑標(biāo)識(shí)符,才會(huì)拋出上面的異常,因此傳入的參數(shù)應(yīng)該為”127.0.0.1/1.doc”。或者在方法里面進(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)上多的是,這樣就不累述了)
////// 測(cè)試是否可以成功連接FTP和判斷文件是否存在 /// /// FTP上文件地址 /// FTP登陸用戶名 /// FTP登陸密碼 /// 返回錯(cuò)誤消息 ///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; }
以上是“C#如何解決連接FTP時(shí)的路徑問(wèn)題”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。