■ Regex 클래스의 IsMatch 정적 메소드를 사용해 특정 파일 확장자를 갖는 파일을 구하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
using System; using System.Collections.Generic; using System.IO; using System.Text.RegularExpressions; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main(argumentArray) /// <summary> /// 프로그램 시작하기 /// </summary> /// <param name="argumentArray">인자 배열</param> private static void Main(string[] argumentArray) { Console.Title = "Regex 클래스 : IsMatch 정적 메소드를 사용해 특정 파일 확장자를 갖는 파일 구하기"; List<string> filePathList = GetFilePathList("d:\\TEMP", ".jpg|.png|.bmp|.JPG|.PNG|.BMP|.JPEG|.jpeg$"); foreach(string filePath in filePathList) { Console.WriteLine(filePath); } } #endregion #region 파일 경로 리스트 구하기 - GetFilePathList(sourceDirectoryPath, fileExtensionPattern) /// <summary> /// 파일 경로 리스트 구하기 /// </summary> /// <param name="sourceDirectoryPath">소스 디렉토리 경로</param> /// <param name="fileExtensionPattern">파일 확장자 패턴</param> /// <returns>파일 경로 리스트</returns> private static List<string> GetFilePathList(string sourceDirectoryPath, string fileExtensionPattern) { List<string> filePathList = new List<string>(); foreach(string filePath in Directory.GetFiles(sourceDirectoryPath, "*.*", SearchOption.AllDirectories)) { if(Regex.IsMatch(filePath, fileExtensionPattern)) { filePathList.Add(filePath); } } return filePathList; } #endregion } } |