python實現根據檔名刪除檔案
阿新 • • 發佈:2021-01-30
技術標籤:好用的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")