일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 설정
- javascript
- install
- 자바스크립트
- java
- 리눅스
- 파이썬
- 3.0
- DB
- python
- 아틀라시안
- 데이터베이스
- ubuntu
- node
- JS
- Linux
- DATABASE
- 자바
- 윈도우
- 노드
- PostgreSQL
- 우분투
- Atlassian
- 하모니카
- 스크립트
- Windows
- hamonikr
- postgres
- script
- 설치
Archives
- Today
- Total
목록derectory (1)
LukeHan 의 잡다한 기술 블로그
Python 파일 및 폴더
폴더 확인 import os # 사용 os.path.isdir(path) # 있는 경우 반환값 True # 없는 경우 반환값 False # 파일을 찾는 경우 반환값 # ex) os.path.isdir("/home/ubuntu/temp.txt") False 파일 확인 import os # 사용 os.path.isfile(path) # 있는 경우 반환값 True # 없는 경우 반환값 False 폴더 생성 import os def createFolder(directory): try: if not os.path.exists(directory): os.makedirs(directory) except OSError: print('Err : Creating directory. ' + directory) createF..
개발/Python
2020. 11. 15. 17:16