import os
from pathlib import Path
root = {root} # 루트
make_dir = ({dir1},{dir2},...{dirn}) # 만들 디렉토리들
for d in make_dir:
dir_path = os.path.join(root,d) # 디렉토리 경로 설정
if not os.path.isdir(dir_path):
Path(dir_path).mkdir(parents=True, exist_ok=True)
위 과정을 os.makedirs를 이용하면 더욱 손쉽게 해결할 수 있습니다.
os.makedirs(file_path,exist_ok=True)