728x90
728x170
using System.Collections.Generic; using System.IO; using System.Text.RegularExpressions;
namespace TEST { class Function { public static List<string> GetImageFiles(string directoryPath) { List<string> imageFileList = new List<string>();
foreach (string fileName in Directory.GetFiles(directoryPath)) { if (Regex.IsMatch(fileName, @".jpg|.png|.bmp|.JPG|.PNG|.BMP|.JPEG|.jpeg$")) { imageFileList.Add(fileName); } }
return imageFileList; } } }
|
728x90
그리드형
'C# > Winform' 카테고리의 다른 글
[C#] 참조한 dll 들 exe 파일로 통합하기 (0) | 2020.06.02 |
---|---|
[C#] 마우스 후킹하기 (0) | 2020.06.02 |
[C#] 솔루션 전체 라인 수 알아내기 (0) | 2020.05.27 |
[C#] 파일을 선택하여 windows 탐색기 열기 (0) | 2020.05.27 |
[C#] 캡쳐 방지하기 (0) | 2020.05.21 |