일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- list
- Apache
- gas
- PostgreSQL
- Kotlin
- Excel
- SQL
- Mac
- math
- google apps script
- matplotlib
- string
- Java
- c#
- dataframe
- PANDAS
- django
- numpy
- Github
- Redshift
- Google Spreadsheet
- hive
- 파이썬
- Google Excel
- GIT
- PySpark
- array
- Python
- Tkinter
- Today
- Total
목록GetFiles (2)
달나라 노트
GAS(Google Apps Script)는 Google Apps에서 제공하는 여러 App들을 조종할 수 있는 기능을 제공합니다. 이는 단순히 GAS로 spreadsheet를 조절하는 것 뿐 아니라 gmail, google drive 등 다른 여러 가지 app들에 대한 기능도 제공합니다. 오늘은 그 중에서 Google Drive 관련 기능을 알아봅시다. Google Drive에는 여러 파일들이 있을겁니다. 그 파일이 mp4 같은 동영상 파일이 될수도있고, spreadsheet일 수도 있고, 문서일 수도 있고, 외부 pdf 파일일 수도 있습니다. 거의 모든 파일이 있을 수 있죠. GAS에선 현재 내 계정에 있는 모든 파일에 접근할 수 있습니다. 본격적으로 들어가기 전에 한가지 개념을 알고갑시다. Googl..
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..