import os
dirs = ‘/Users/joseph/work/python/‘
if not os.path.exists(dirs):
os.makedirs(dirs)
import os
filename = ‘/Users/joseph/work/python/poem.txt‘
if not os.path.exists(filename):
os.system(r"touch {}".format(path))#调用系统命令行来创建文件
# 写之前,先检验文件是否存在,存在就删掉
if os.path.exists("dest.txt"):
os.remove("dest.txt")
原文:https://www.cnblogs.com/tonyxiao/p/14399115.html