[python]如何刪除目錄下指定格式的檔案
# -*- coding: utf-8 -*-
"""
Created on Sun Sep 03 22:01:25 2017
@author: Administrator
"""
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
def del_files(path):
for root , dirs, files in os.walk(path):
for name in files:
if name.endswith(".jpg"):
os.remove(os.path.join(root,name))
print ("Delete File: " + os.path.join(root, name))
# test
if __name__ == "__main__":
path = r'E:\VedioClassfication\five-video-classification-methods-master\five-video-classification-methods-master\data\train'
del_files(path)
相關文章
- 刪除指定目錄下指定字尾的檔案
- Python 刪除目錄中特定檔案Python
- 刪除目錄及目錄下所有檔案與子目錄 (轉)
- 批次刪除指定目錄下的sh指令碼指令碼
- python基礎之刪除檔案及刪除目錄的方法Python
- 刪除檔案或目錄提示"檔案或目錄無法刪除"的解決方法!
- Linux下批量刪除空檔案或者刪除指定大小的檔案Linux
- 刪除當前目錄下的所有可執行檔案
- linux下刪除目錄及其子目錄下某種型別檔案Linux型別
- Git刪除指定檔案Git
- linux 刪除檔案或目錄——rmLinux
- Linux rm(刪除檔案/目錄) 命令Linux
- linux 刪除問題 一次刪除多個目錄下的相同副檔名的檔案Linux
- linux下刪除指定日期前的檔案Linux
- Linux如何在目錄下靈活建立、瀏覽、刪除百萬個檔案Linux
- python獲取指定目錄下的所有指定字尾的檔名Python
- Linux下刪除指定資料夾下指定字尾名的檔案Linux
- Linux rm命令:刪除檔案或目錄Linux
- linux rm 命令(刪除檔案和目錄)Linux
- linux下刪除指定資料夾目錄下指定的檔名命令( find 指定的資料夾/ -name this.html~ |xargs rm -rf)LinuxHTML
- 指定目錄下的所有檔案中的字串替換字串
- Python指令碼實現查詢指定目錄下包含指定關鍵字的檔案Python指令碼
- Java 從指定URL下載檔案並儲存到指定目錄Java
- linux下使用rm命令刪除一個有大量檔案的目錄Linux
- 刪除git已經跟蹤的檔案或者目錄Git
- 【轉載】windows下刪除指定日期前的檔案Windows
- rsync同步時,刪除目標目錄比源目錄多餘檔案的方法(--delete)delete
- git 刪除歷史指定檔案Git
- 兩個目錄中,刪除其中一個目錄中同名檔案的做法
- 電腦如何利用Bat刪除文字檔案指定字串?BAT字串
- liunx批量刪除指定字尾的檔案
- Git刪除暫存區的指定檔案Git
- 刪除檔案中包含指定字串的行字串
- py目錄下獲取指定字尾檔案打包成zip檔案
- Linux 某個目錄下查詢檔案大小並排序(du),特定檔案刪除(find)Linux排序
- C語言remove()函式:刪除檔案或目錄C語言REM函式
- 對於C#winform介面開發中開啟指定的目錄及開啟指定目錄下的檔案C#ORM
- windows 把指定目錄的檔案複製到當前目錄Windows