반응형
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 | 31 |
Tags
- list
- math
- PySpark
- matplotlib
- google apps script
- gas
- Google Excel
- Apache
- SQL
- Google Spreadsheet
- array
- Mac
- Redshift
- c#
- hive
- Excel
- PANDAS
- PostgreSQL
- Java
- Kotlin
- Tkinter
- dataframe
- numpy
- GIT
- 파이썬
- string
- django
- Github
- Python
Archives
- Today
- Total
목록directory (1)
달나라 노트
C# : System.IO.Directory.GetFiles (디렉토리 내의 파일 list 얻기)
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.GetFil..
C#/C#
2022. 5. 9. 22:06