【linux】python 判断目录和文件是否存在,若不存在即创

2020-07-23  本文已影响0人  我的章鱼小丸子呢

判文件夹是否存在

import os
dirs = '/Users/joseph/work/python/'
if not os.path.exists(dirs):
    os.makedirs(dirs)

判断文件是否存在,不存在则会新建

import osfilename = '/Users/joseph/work/python/poem.txt'

if not os.path.exists(filename):
    os.system(r"touch {}".format(path))#调用系统命令行来创建文件
上一篇下一篇

猜你喜欢

热点阅读