mkdir

import os

path = './dir/tmp'

os.mkdir(path)

한 폴더 생성

If the directory already exists, FileExistsError  is raised. If a parent directory in the path does not exist, FileNotFoundError  is raised.

makedirs

os.makedirs(name, mode=0o777, exist_ok=False)

경로 내 모두 생성

exist_ok=False 이면, 이미 해당 디렉토리가 존재하는 경우에는 exception에러가 뜨게 됩니다.