1
import os def del_file(filepath): """ 删除execl目录下的所有文件或文件夹 :param filepath: 路径 :return: """ del_list = os.listdir(filepath) for f in del_list: file_path = os.path.join(filepath, f) if os.path.isfile(file_path): os.remove(file_path) files = os.getcwd() + '\\execl_data' # 获取当前目录+execl目录 del_file(files) print(datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S'))