Python创建目录文件夹

Python创建目录文件夹,有两个函数可实现:os.makedirs(path)、os.mkdir(path)。

区别:

os.makedirs(),当父目录不存在时,自动创建。

os.mkdir(),当父目录不存在时,不创建,提示错误。

示例:

import os

create_path = "d:\\dir_L1\\dir_L2"
isExists = os.path.exists(create_path)
if not isExists:
    os.makedirs(create_path)

print("完成。")

 

参考

  1. https://www.cnblogs.com/monsteryang/p/6574550.html

你可能感兴趣的:(python,创建目录,makedirs)