Python 刪除檔案和檔名特定字元

2021-08-19 23:34:31 字數 903 閱讀 4169

#coding=utf-8

import os

import string

def re_file():

path = os.getcwd()

#filelist = os.listdir(path) #該資料夾下所有的檔案(包括資料夾)

for root, dirs,files in os.walk(path):

for  name in files: #遍歷所有檔案

pathname = os.path.splitext(os.path.join(root,name))

if(pathname[1] != ".txt" and pathname[1] != ".png" and pathname[1] != ".exe"and pathname[1] != ".bin"): #刪除不是.txt的檔案

os.remove(os.path.join(root,name))

def re_name():

path = os.getcwd()

# filelist = os.listdir(path) #該資料夾下所有的檔案(包括資料夾)

for root, dirs, files in os.walk(path):

for name in files:  # 遍歷所有檔案

pos = name.find(".tab.out")  # 把檔案帶有.tab.out的字元刪除

if (pos == -1):

continue

newname = name[0:pos] + name[pos + 8:]

os.rename(os.path.join(root, name), os.path.join(root, newname))

re_file()

re_name()

python檔名和檔案路徑操作例項

readme 在日常工作中,我們常常涉及到有關檔名和檔案路徑的操作,在python裡的os標準模組為我們提供了檔案操作的各類函式,本文將分別介紹 獲得當前路徑 獲得當前路徑下的所有檔案和資料夾,刪除檔案 刪除目錄 多個目錄 檢查檔案 檔案路徑 檢查檔案路徑是否存在 分離檔案路徑及檔名 分離副檔名 得...

獲取檔名和檔案路徑

1.問題描述 比如已經知道檔案的路徑是 c dir0 dir1 readme.txt 除了用split 的方式獲取檔名和路徑,有沒有什麼更高效的方式 2.解決辦法 os.path.dirname 路徑 os.path.basename 檔名 import os file path d work te...

Python 獲取路徑名和檔名

os.path.dirname 和os.path.abspath 的區別 dirname是獲取的檔案所在目錄的路徑 abspath是獲取的檔案的絕對路徑 但是,當dirname括號內是相對路徑的時候,他返回是空,什麼都沒有 而如果abspath執行的話,如果檔案在當前目錄下有,他就返回,如果沒有,他...