Python 3如何删除文件夹中的图像

c2e8gylq  于 2023-06-25  发布在  Python
关注(0)|答案(3)|浏览(197)

如何使用Python 3删除文件夹中的所有png格式图片?

nfg76nw0

nfg76nw01#

这一行语句将获取指定路径中的每个文件并删除它 * 如果 * 文件名以.png结尾:

import os
os.remove(file) for file in os.listdir('path/to/directory') if file.endswith('.png')
xwmevbvl

xwmevbvl2#

import glob
removing_files = glob.glob('file path/*.jpg')
for i in removing_files:
    os.remove(i)

用镜像文件夹的目录替换文件路径

mefy6pfw

mefy6pfw3#

这个函数将帮助你删除一个单一的图像文件你需要做的是把它放在for循环删除多个图像或文件..只是双重检查你提供有效路径到你的文件.”

def remove_img(self, path, img_name):
    os.remove(path + '/' + img_name)
# check if file exists or not
    if os.path.exists(path + '/' + img_name) is false:
        # file did not exists
        return True

相关问题