goodthings4me.tistory.com
파이썬으로 폴더(디렉토리) 만들기
import os
## os.mkdir(path) 또는 os.mkdirs(path)
# 절대주소 D:\projects 폴더에 temp 폴더 생성
path = 'D:/projects/temp' # 'D:\\projects\\temp'
os.mkdir(path)
# 현재 폴더에 temp 폴더 생성
path1 = './temp'
os.mkdir(path1)
# 상위, 하위 폴더를 같이 만들 때
path2 = './imsi/temp'
# os.mkdir(path2) # 지정한 경로가 없을 때 FileNotFoundError 에러 발생
os.makedirs(path2)
# 폴더가 있는지 없는지 확인 후 만들 때
path3 = './test'
if not os.path.exists(path3):
os.mkdir(path3)
#또는 os.makedirs(name, exist_ok=bool) 사용
os.makedirs(path3, exist_ok=True)
# 여러 폴더를 만들 때
folders = ['./dir1', './dir2', './dir3']
for path in folders:
os.mkdir(path)
# 여러 폴더를 만들 때 (하위 폴더를 같이)
folders = ['./dir1/sub1', './dir2', './dir3']
for path in folders:
os.makedirs(path)
'코딩 연습 > 코딩배우기' 카테고리의 다른 글
[Python] 파이썬 웹 크롤링 - 스크래핑 관련 유튜브 강의[나도코딩] 연습 코드 정리 (1) | 2021.06.27 |
---|---|
[Python] 문자열 내 특수문자 제거 - replace(), isalnum(), join() 등 사용 (0) | 2021.06.23 |
파이썬 실천 기술 #06 - 내장함수와 특수메서드(스페셜 메서드) (0) | 2021.06.12 |
파이썬 실천 기술 #05 - 이름공간, 스코프 (0) | 2021.06.03 |
파이썬 실천 기술 #04 - 클래스와 인스턴스 (1) | 2021.05.26 |
댓글