반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- numpy
- Apache
- c#
- PySpark
- Tkinter
- Python
- gas
- Github
- hive
- django
- Kotlin
- Mac
- PostgreSQL
- Java
- matplotlib
- Google Spreadsheet
- PANDAS
- SQL
- GIT
- string
- list
- Google Excel
- 파이썬
- Excel
- math
- array
- Redshift
- google apps script
- dataframe
Archives
- Today
- Total
달나라 노트
C# : System.IO.Directory.GetFiles (디렉토리 내의 파일 list 얻기) 본문
728x90
반응형
System.IO.Directory.GetFiles는 특정 디렉토리에 있는 파일 리스트를 return합니다.
Syntax
System.IO.Directory.GetFiles(directory, file_name_pattern)
사용법은 위와 같습니다.
directory = 파일 리스트를 얻을 기준 directory를 의미합니다.
file_name_pattern = *.png 같이 얻어올 파일 이름의 패턴을 입력해줍니다.
using System;
class CardCatch
{
public static void Main()
{
string dir_source = "C:\\Users\\Public\\mysource\\";
string[] list_files = System.IO.Directory.GetFiles(dir_source, "*.png");
foreach (string file in list_files)
{
Console.WriteLine(file);
}
}
}
-- Result
C:\Users\Public\mysource\dice_0.png
C:\Users\Public\mysource\dice_1.png
C:\Users\Public\mysource\dice_2.png
C:\Users\Public\mysource\dice_3.png
C:\Users\Public\mysource\dice_4.png
C:\Users\Public\mysource\dice_5.png
C:\Users\Public\mysource\dice_6.png
GetFiles는 기본적으로 File의 리스트를 return하기 때문에 string[] 처럼 array에 담아주어야 합니다.
*.png의 의미는 파일 이름이 .png로 끝나는 파일을 가져오라는 의미입니다.
using System;
class CardCatch
{
public static void Main()
{
string dir_source = "C:\\Users\\Public\\mysource\\";
string[] list_files = System.IO.Directory.GetFiles(dir_source, "*");
foreach (string file in list_files)
{
Console.WriteLine(file);
}
}
}
-- Result
C:\Users\Public\mysource\dice_0.png
C:\Users\Public\mysource\dice_1.png
C:\Users\Public\mysource\dice_2.png
C:\Users\Public\mysource\dice_3.png
C:\Users\Public\mysource\dice_4.png
C:\Users\Public\mysource\dice_5.png
C:\Users\Public\mysource\dice_6.png
C:\Users\Public\mysource\dice_7.jpg
위처럼 *만 입력하면 모든 패턴의 이름을 가진 파일들을 return합니다.
728x90
반응형
'C# > C#' 카테고리의 다른 글
C# : FillEllipse (채워진 타원 그리기) (0) | 2022.05.18 |
---|---|
C# : break, continue, pass (0) | 2022.05.10 |
C# : C# 코드를 exe 파일로 만들기. exe 파일 생성. 실행 파일 생성 (2) | 2022.04.21 |
C# : CurrentDirectory (현재 directory) (0) | 2022.04.21 |
C# : PadLeft, PadRight (lpad, rpad) (0) | 2022.04.21 |
Comments