1. 程式人生 > 其它 >python實現根據檔名刪除檔案

python實現根據檔名刪除檔案

技術標籤:好用的python小程式

在這裡插入圖片描述
根據txt文件裡的檔名,刪除相關的內容,txt文件裡可以是圖片的名,也可以是xml名,如下示例;
在這裡插入圖片描述

# -*- coding: utf-8 -*-
import os

def delete_file(dirname):
    filelist = os.listdir(dirname)
    for file in filelist:
        oldpath = os.path.join(dirname, file)
        filename = os.path.splitext(file)[0]  # 檔名
        filetype =
os.path.splitext(file)[1] # 檔案型別 if filename[0] == '_': os.remove(oldpath) delete_file("文件路徑txt")