刪除指定檔案的python指令碼

2022-04-04 16:18:33 字數 568 閱讀 2936

作為乙個黑mac使用者,每次在mac下訪問windows分割槽都會留下證據,這讓我很不爽。乙個個的刪除又麻煩的蛋疼,於是想起了python!寫了乙個刪除指定檔案的指令碼,每次只需寫下所要掃瞄的目錄和所要刪除的檔案即可!

#coding:utf-8

import os

deldirs = input("請輸入要執行刪除操作的路徑:")

delfiles = input("請輸入要刪除的檔案名字:")

print(deldirs)

for alldirs,dirs,filename in os.walk(deldirs):

if delfiles in filename:

os.remove(alldirs + "/" + delfiles)

print("\n刪除成功!")

if delfiles not in filename:

print("未找到所要刪除的檔案!")

input("按任意鍵退出!")

有乙個問題是,用的aptana 3 編輯時 輸入漢字亂碼,然後中文檔案就不能正常找到,怎麼解決,求高手解答!

Linux刪除指定目錄檔案指令碼

刪除語法格式 find 對應目錄 mtime 天數 name 檔名 exec rm rf find u01 masicong mtime 10 name exec rm rf 將 u01 backups目錄下所有10天前帶 的檔案刪除 說明 u01 backups 想要進行清理的任意目錄 mtime...

shell 指令碼定時刪除指定檔案

指令碼檔案demo.sh bin bash 要執行刪除的目錄 設定時間範圍 time sect 60 執行指令碼的當前時間 timenow date u s 迴圈開始選擇檔名 cd filepath 檔案匹配 for i in ls jsp html do 檔案的建立時間 filetime stat...

python刪除指定目錄下的指定檔案和資料夾

具體 coding utf 8 import os,sys,platform class removetagfile object path none def removefile self,path,remove list,retain list path後面要跟 self.path path s...