前言

当我们需要在项目中创建文件夹或目录时,不想要手工去创建,而是通过代码的方式,这就需要使用到python的os模块

用法

  • 1.os.makedirs(path) # 多层创建目录
  • 2.os.mkdir(path) # 创建目录
  • 补充:
    os.path.exists(path) # 判断一个目录是否存在
    os.path.isdir(path) # 判断此路径是否为目录/文件夹
    os.path.isfile(path) # 判断此路径是否为文件

示例

import os

def createDir(createDirPath):
    if os.path.isdir(createDirPath):
        pass
    else:
        os.makedirs(createDirPath)        


if __name__ == "__main__":
    createDirPath = "/data/deploy"
    createDir(createDirPath)