删除文件夹内容
需求:删除特定文件夹内的文件.
def delete_file():
path = filt_path
for roots, dirs, files in os.walk(path):
file = files
print(file)
try:
os.remove(file_path)
for x in file:
aim = path + "/" + x
os.remove(aim)
except Exception as e:
raise e
代码运行后,可删除目标文件夹中的文件,其中删除目标可进行调整。