C# 폴더의 파일명을 불러오기
C# 폴더의 파일을 로드하기 C# 폴더의 파일을 richtextbox에 로드하기 1. Form 화면 구성 : 버튼, 라벨, 리치텍스트박스 추가한다. 2. 폴더 경로를 불러온다. FolderBrowserDialog fbd = new FolderBrowserDialog(); if(fbd.ShowDialog() == DialogResult.OK) { Path = fbd.SelectedPath; this.label1.Text = Path; } 3. 폴더내의 파일명을 불러온다. System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(Path); foreach(var filename in di.GetFiles()) { richTextBox1.Text += filenam..
프로그래밍/C#
2022. 8. 17. 11:53