티스토리 뷰
반응형
#. 폴더 생성하기
-- os.path.exists 메서드로 해당 Directory가 없으면 Directory를 생성
1 2 3 4 5 6 7 8 9 10 | import os def createFolder(directory): try: if not os.path.exists(directory): os.makedirs(directory) except OSError: print ('Error: Creating directory. ' + directory) createFolder('/Users/aaron/Desktop/test') | cs |
반응형
'Python > Collection' 카테고리의 다른 글
[Python] 파이썬으로 구글 이미지 크롤링하기 - google_images_download (5) | 2019.04.27 |
---|---|
[Python] 파이썬으로 폴더(파일)명 변경하기 - os.rename (1) | 2019.04.27 |
[Python] 엑셀(excel) 파일 불러오기 - xlrd, openpyxl 패키지 (0) | 2019.02.14 |
[Python] csv 파일 불러오기 - np.read_csv, np.read_table (0) | 2019.02.13 |
[Python] Numpy 텍스트파일 저장, 불러오기(savetxt, loadtxt) (0) | 2019.02.01 |
댓글