python獲取指定目錄下的所有指定字尾的檔名

2021-10-25 15:34:53 字數 488 閱讀 5118

我想拿到test/目錄下所有的.log檔案。

注意:只能單個檔案,不能連帶目錄

os.path.splitext():分離檔名與副檔名**如下:

# -*- coding: utf-8 -*-

import os

def getfilename(path):

''' 獲取指定目錄下的所有指定字尾的檔名 '''

f_list = os.listdir(path)

# print f_list

for i in f_list:

# os.path.splitext():分離檔名與副檔名

if os.path.splitext(i)[1] == '.log':

print i

if __name__ == '__main__':

path = './text'

getfilename(path)

python 獲取指定目錄下各目錄占用的空間大小

語言 python3 功能 獲取指定目錄下各目錄占用的空間大小 獲取指定目錄下各目錄占用的空間 coding utf 8 import os,time,platform,sys from threading import thread path,file 1 sys0 platform.system...

Scala 獲取指定目錄下的所有檔案

最近在學習scala,想要獲取指定目錄下的所有檔名,但是scala 中有沒有相應的庫函式,由於本人是新手,所以弄了半天,好不容易才將網上的一段scala 遞迴獲取指定目錄下所有目錄的 改成獲取檔名,特在此備忘,也希望高手指點。下面是一段遞迴獲取目錄名稱的 def subdirs2 dir file ...

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...