반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | public void SearchDirectory(String path) { List<String> str = new List<String>(); try { foreach (string strdir in Directory.GetDirectories(path)) { foreach (string strfile in Directory.GetFiles(strdir, "*.java")) { str.Add(strfile); Console.WriteLine(strfile); } SearchDirectory(strdir); } } catch (System.Exception excpt) { Console.WriteLine(excpt.Message); } } |
반응형
'Language > C#' 카테고리의 다른 글
[오류] 'Microsoft.ACE.OLEDB.12.0' 공급자는 로컬 컴퓨터에 등록할 수 없습니다. (0) | 2013.11.21 |
---|---|
Excel 다루기 (Microsoft Excel 14.0 Object Library) - 1 (0) | 2013.11.20 |
하위 디렉토리 경로 내 파일 목록 얻어오기 (0) | 2013.11.14 |
partial class (0) | 2013.11.09 |
폴더 선택 다이얼로그 띄우기! (0) | 2013.11.08 |