파이썬 디렉토리 생성 코드
Python에서 Directory가 없으면 생성하는 코드
코드
- python create directory if not exists
import os
if not os.path.exists(directory):
os.makedirs(directory)
'Python > Python 프로그래밍' 카테고리의 다른 글
파이썬(Python) 한글 문자 길이 (0) | 2021.04.28 |
---|---|
C를 Python으로 Wrapping하는 방법 (0) | 2021.04.28 |
파이썬 HTML 파싱 하는 방법 (0) | 2021.04.28 |
파이썬 스케일이 다른 그래프 (0) | 2021.04.28 |
파이썬 데이터 읽기 (pandas) (0) | 2021.04.28 |
[Python] Flask Response Encoding 문제 (0) | 2021.04.28 |
[Python] Flask logging 하는 방법 (0) | 2021.04.28 |
[Python] Virtualenv 설치 및 dependencies 관리하기 (0) | 2021.04.28 |