编程语言
首页 > 编程语言> > python清空文件夹

python清空文件夹

作者:互联网

import os
import shutil

def RemoveDir(filepath):
‘’’
如果文件夹不存在就创建,如果文件存在就清空!

'''
if not os.path.exists(filepath):
    os.mkdir(filepath)
else:
    shutil.rmtree(filepath)
    os.mkdir(filepath)

标签:filepath,python,mkdir,文件夹,清空,import,shutil,os
来源: https://blog.csdn.net/lh_hebine/article/details/119276237