import os import shutil
def RemoveDir(filepath): ‘’’ 如果文件夹不存在就创建,如果文件存在就清空!
''' if not os.path.exists(filepath): os.mkdir(filepath) else: shutil.rmtree(filepath) os.mkdir(filepath)