python创建多层目录的方式

if not os.path.exists(path_dir):
    os.makedirs(path_dir)

参考:https://docs.python.org/3/library/os.html#os.makedirs

你可能感兴趣的:(python,python,开发语言,后端)