Python遍歷資料夾查詢最新的檔案 demo

2021-09-08 07:36:20 字數 1140 閱讀 9212

前情提要:需要再報告資料夾中,查詢最新建立的報告檔案。

**呈現:

import os

import time

dir = r'c:\users\jishi\desktop\mine\work\report'

a = os.path.getatime(dir) #輸出最近訪問時間

b = os.path.getctime(dir) #輸出檔案建立時間

c = os.path.getmtime(dir) #輸出最近修改時間

d = time.gmtime(os.path.getmtime(dir)) #以struct_time形式輸出最近修改時間

print a

print b

print c

print d

file_lists = os.listdir(dir) #輸出資料夾下目錄

print file_lists

file_lists.sort(key=lambda fn: os.path.getmtime(dir + "\\" + fn)

if not os.path.isdir(dir + "\\" + fn) else 0)

print file_lists[-1] #輸出最新檔案

p = os.path.join(dir, file_lists[-1]) #輸出最新檔案的目錄

print p

結果展現:

1547024132.67

1547024100.03

1547024132.67

time.struct_time(tm_year=2019, tm_mon=1, tm_mday=9, tm_hour=8, tm_min=55, tm_sec=32, tm_wday=2, tm_yday=9, tm_isdst=0)

['01', '01 - copy', '01 - copy (2)', '01 - copy (3)', '01 - copy (4)', '01 - copy (5)']

01 - copy (5)

c:\users\jishi\desktop\mine\work\report\01 - copy (5)

Python 資料夾遍歷和檔案查詢

coding utf 8 to find where use the table on xx production env 在專案中我們元資料管理的不是很好,如果先知道一張表在 用過,就需要寫個程式去遍歷下 import os import os.path rootdir c users ibm a...

python 遍歷資料夾

在python中,檔案操作主要來自os模組,主要方法如下 os.listdir dirname 列出dirname下的目錄和檔案 os.getcwd 獲得當前工作目錄 os.curdir 返回當前目錄 os.chdir dirname 改變工作目錄到dirname os.path.isdir nam...

python 遍歷資料夾

1.遍歷資料夾 import os import os.path rootdir d data 指明被遍歷的資料夾 for parent,dirnames,filenames in os.walk rootdir 三個引數 分別返回1.父目錄 2.所有資料夾名字 不含路徑 3.所有檔案名字 for ...