파이썬 디렉토리 생성 코드

2021. 4. 28. 01:59 Python/Python 프로그래밍

Python에서 Directory가 없으면 생성하는 코드

 

코드

  • python create directory if not exists
import os

if not os.path.exists(directory):
    os.makedirs(directory)

 

출처 : ourcstory.tistory.com/329?category=630693