Python 创建多级目录(文件夹)

目录

Python 创建文件夹,支持多级目录。

def make_dirs(dir_path):
    # 去除首尾空白符和右侧的路径分隔符
    dir_path = dir_path.strip().rstrip(os.path.sep)

    if dir_path:
        if not os.path.exists(dir_path):  # 如果目录已存在, 则忽略,否则才创建
            os.makedirs(dir_path)