특정폴더에서 특정 파일 목록 출력하기 다운로드 폴더에서 특정 파일 목록 출력하기 다음 예제는 다운로드 폴더에서 "$temp*.csv" 파일 목록을 출력하는 예제입니다. 프로그램에서 임시로 생성된 여러 개의 파일을 삭제하기 위해 사용될 수 있습니다. using System; using System.IO; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { string path = Path.GetDirectoryName(Environment.GetFolderPath(Environment.SpecialFolder.Personal)); path = Path.Combine(path, "Downloads"); strin..