Login
Home 태그 전체글 방명록 글쓰기 관리자
프로그래밍 IT 블로그
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