場景 指定一個路徑和尾碼名,查找這個路徑下所有以此尾碼名結尾的文件。 註: 博客主頁: https://blog.csdn.net/badao_liumang_qizhi 關註公眾號 霸道的程式猿 獲取編程相關電子書、教程推送與免費下載。 實現 新建工具類FileHelper,工具類中新建方法Get ...
場景
指定一個路徑和尾碼名,查找這個路徑下所有以此尾碼名結尾的文件。
註:
博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關註公眾號
霸道的程式猿
獲取編程相關電子書、教程推送與免費下載。
實現
新建工具類FileHelper,工具類中新建方法GetFileListWithExtend
public static List<string> GetFileListWithExtend(DirectoryInfo directory, string pattern) { List<string> pathList = new List<string>(); string result = String.Empty; if (directory.Exists || pattern.Trim() != string.Empty) { foreach (FileInfo info in directory.GetFiles(pattern)) { result = info.FullName.ToString(); pathList.Add(result); } } return pathList; }
調用示例
List<string> taskFileList = FileHelper.GetFileListWithExtend(new DirectoryInfo(currentPath), "*.pcj");
其中currentpath就是一個指定的路徑
然後第二個參數是指定尾碼名
調用結果