删除本地图片
"""
author:张鑫
date:2021/12/15 15:33
"""
import os
"""
img_Location:图片所在位置
img_end:图片后缀名
文件夹中每个文件会遍历一次,所以当文件夹为空时,不输出内容
"""
def delete_img(img_Location, img_end):
images_files = os.listdir(img_Location)
for file in images_files:
if file.endswith(img_end):
os.remove(os.path.join(img_Location, file))
print('删除成功')
else:
print('没有此种后缀名的图片')
delete_img(fr"E:\BaiduNetdisk", '.jpg')