利用python自帶的os模組刪除windows機器的模組
阿新 • • 發佈:2019-02-13
今天閒來無事就搗鼓了一下python自帶的os模組,看了下大概介紹,通過看視訊就搞了一個實現遞迴刪除圖片的小程式
思路分析:
1,實現拼接目錄和檔案
2,在刪除檔案的情況下先做下判斷,否則無法刪除檔案
import os
這裡寫程式碼片
encoding UTF-8
delete drive png
delte dirs png
date 2015-3-14 20:14
def getimage(path):
for file,root,trys in os.walk(path):
for files in trys:
if “png” in files:
imagefile=os.path.join(file+files)
#print imagefile
if “arr” in imagefile:
print imagefile
if os.path.isfile(imagefile): os.remove(imagefile)
path=”C:\Kugou”
getimage(path)