일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- pycharm
- pip
- SPL
- index
- keras
- E-P1
- pandas
- CNN
- Numpy
- javascript
- DFS
- Lotto
- install
- synology
- Splunk
- 삼성소프트웨어멤버십
- Button
- Python
- 알고리즘
- SciPy
- dataframe
- mean
- GitHub
- mariadb
- ipad
- RNN
- LSTM
- GT-S80
- imread
- Series
Archives
- Today
- Total
목록파일 (2)
잠토의 잠망경
[20210502] 노트
하드 복구 https://www.r-studio.com/ 삭제된 File을 복구하는 전문 Tool이다.
만화경
2021. 5. 2. 16:31
[python] glob, Directory 하위 파일 List 읽기
지정된 위치의 File List를 읽기위한 방법 Github https://github.com/yiwonjae/Project_Python_Lib/blob/master/Files/Directorys.py import glob ''' 목적: 원하는 폴더에 있는 file 이름을 찾아서 return한다. i ) path : 폴더 및 파일 이름, *.txt, *.* 사용 가능 o ) list : file 이름 list ''' def findFiles(path:str)->list: fileList = glob.glob(path) print(fileList) return fileList if __name__ == '__main__': path = "../datas/sincontan*.txt" files = findF..
공부/Python
2020. 3. 22. 09:55