C#

(C#) 특정 폴더에서 특정 파일 목록 가져오기

코딩ABC 2023. 6. 25. 07:45
반응형
  • 특정폴더에서 특정 파일 목록 출력하기
  • 다운로드 폴더에서 특정 파일 목록 출력하기

 

다음 예제는 다운로드 폴더에서 "$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");

            string[] csvfiles = Directory.GetFiles(path, "$temp*.csv");

            foreach(string f in csvfiles)
                Console.WriteLine("{0}", f);
        }
    }
}

특정 폴더에서 특정 파일 목록 가져오기

 

반응형