標籤:bool server 上傳 trail list text 建立檔案夾 判斷目錄 str
工作中項目一直使用的ftp上傳記錄檔出現了問題,新的伺服器搭建好後,日誌無法上傳。正好來學習一下ftp。
程式中的流程是,一個計時器,每分鐘檢測設定檔中本地記錄檔路徑下有沒有記錄檔,如果有就上傳到伺服器上去,然後把本地的檔案刪掉。日誌以日期為單位,每天一個檔案夾,之後是日誌類型,按類型分檔案夾。上傳之前先檢測伺服器上是否存在該檔案夾,如果不存在則建立一個檔案。
下面是代碼。(只放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); }
/// <summary> /// 判斷目前的目錄下指定的子目錄是否存在 /// </summary> /// <param name="RemoteDirectoryName">指定的目錄名</param> 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(); }
/// <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 判斷目錄是否存在和建立檔案夾