<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
C# ftp判斷目錄是否存在,不存在則自動建立資料夾
/// <summary> /// 判斷檔案的目錄是否存,不存則建立 /// </summary> /// <param name="destFilePath">本地檔案目錄</param> public void CheckDirectoryAndMakeMyWilson3(string destFilePath) { string fullDir = destFilePath.IndexOf(':') > 0 ? destFilePath.Substring(destFilePath.IndexOf(':') + 1) : destFilePath; fullDir = fullDir.Replace('\', '/'); string[] dirs = fullDir.Split('/');//解析出路徑上所有的檔名 string curDir = "/"; for (int i = 0; i < dirs.Length; i++)//迴圈查詢每一個資料夾 { if (dirs[i] == "") continue; string dir = dirs[i]; //如果是以/開始的路徑,第一個為空 if (dir != null && dir.Length > 0) { try { CheckDirectoryAndMakeMyWilson2(curDir, dir); curDir += dir + "/"; } catch (Exception) { } } } }
public void CheckDirectoryAndMakeMyWilson2(string rootDir, string remoteDirName) { if (!DirectoryExist(rootDir, remoteDirName))//判斷當前目錄下子目錄是否存在 MakeDir(rootDir + "\" + remoteDirName); } public bool DirectoryExist(string rootDir, string RemoteDirectoryName) { string[] dirList = GetDirectoryList(rootDir);//獲取子目錄 if (dirList.Length > 0) { foreach (string str in dirList) { if (str.Trim() == RemoteDirectoryName.Trim()) { return true; } } } return false; }
public string[] GetDirectoryList(string dirName) { string[] drectory = GetFilesDetailList(dirName); List<string> strList = new List<string>(); if (drectory.Length > 0) { foreach (string str in drectory) { if (str.Trim().Length == 0) continue; //會有兩種格式的詳細資訊返回 //一種包含<DIR> //一種第一個字串是drwxerwxx這樣的許可權操作符號 //現在寫程式碼包容兩種格式的字串 if (str.Trim().Contains("<DIR>")) { strList.Add(str.Substring(39).Trim()); } else { if (str.Trim().Substring(0, 1).ToUpper() == "D") { strList.Add(str.Substring(55).Trim()); } } } } return strList.ToArray(); }
定義ftp地址:private string ftpServerIP = "IP:埠";
/// <summary> /// 獲得檔案明晰 /// </summary> /// <param name="path"></param> /// <returns></returns> public string[] GetFilesDetailList(string path) { return GetFileList("ftp://" + ftpServerIP + "/" + path, WebRequestMethods.Ftp.ListDirectoryDetails); } //都呼叫這個 //上面的程式碼範例瞭如何從ftp伺服器上獲得檔案列表 private string[] GetFileList(string path, string WRMethods) { StringBuilder result = new StringBuilder(); try { Connect(path);//建立FTP連線 reqFTP.Method = WRMethods; reqFTP.KeepAlive = false; WebResponse response = reqFTP.GetResponse(); StreamReader reader = new StreamReader(response.GetResponseStream(), System.Text.Encoding.Default);//中文件名 string line = reader.ReadLine(); while (line != null) { result.Append(line); result.Append("n"); line = reader.ReadLine(); } // to remove the trailing '' '' if (result.ToString() != "") { result.Remove(result.ToString().LastIndexOf("n"), 1); } reader.Close(); response.Close(); return result.ToString().Split('n'); } catch (Exception ex) { throw new Exception("獲取檔案列表失敗。原因: " + ex.Message); } }
//連線ftp private void Connect(String path) { // 根據uri建立FtpWebRequest物件 reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(path)); // 指定資料傳輸型別 reqFTP.Method = System.Net.WebRequestMethods.Ftp.UploadFile; reqFTP.UseBinary = true; reqFTP.UsePassive = false;//表示連線型別為主動模式 // ftp使用者名稱和密碼 reqFTP.Credentials = new NetworkCredential(FTPUSERID, FTPPASSWORD); }
/// <summary> /// 建立目錄 /// </summary> /// <param name="dirName"></param> public void MakeDir(string dirName) { try { string uri = "ftp://" + ftpServerIP + "/" + dirName; Connect(uri);//連線 reqFTP.Method = WebRequestMethods.Ftp.MakeDirectory; reqFTP.KeepAlive = false; FtpWebResponse response = (FtpWebResponse)reqFTP.GetResponse(); response.Close(); } catch (Exception ex) { throw new Exception("建立檔案失敗,原因: " + ex.Message); } }
到此這篇關於C#中ftp檢測目錄是否存在和建立資料夾的實現的文章就介紹到這了,更多相關C# ftp檢測目錄存在內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45