【常用代码段】判断一个文件路径对应的文件夹是否存在,不存在则创建

内容如标题

file_path = 'xx\\xxx\\xxxx\\aaa.txt'
file_dir = os.path.dirname(file_path)
if not os.path.isdir(file_dir):
    os.makedirs(file_dir)

你可能感兴趣的:(Python知识点,python)