91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python實現查詢某個目錄下修改時間最新的文件示例

發布時間:2020-10-19 14:59:32 來源:腳本之家 閱讀:166 作者:adayabetter 欄目:開發技術

本文實例講述了Python實現查詢某個目錄下修改時間最新的文件。分享給大家供大家參考,具體如下:

通過Python腳本,查詢出某個目錄下修改時間最新的文件。

應用場景舉例:比如有時候需要從ftp上拷貝自己剛剛上傳的文件,那么這時就需要判斷哪個文件的修改時間是最新的,即最后修改的文件是我們的目標文件。

直接擼代碼:

# -*- coding: utf-8 -*-
import os
import shutil
def listdir(path, list_name): #傳入存儲的list
 for file in os.listdir(path):
  file_path = os.path.join(path, file)
  if os.path.isdir(file_path):
   listdir(file_path, list_name)
  else:
   list_name.append((file_path,os.path.getctime(file_path)))
def newestfile(target_list):
 newest_file = target_list[0]
 for i in range(len(target_list)):
  if i < (len(target_list)-1) and newest_file[1] < target_list[i+1][1]:
   newest_file = target_list[i+1]
  else:
   continue
 print('newest file is',newest_file)
 return newest_file
#p = r'C:\Users\WMB\700c-4'
p = r'C:\Users\Administrator\Desktop\img'
list = []
listdir(p, list)
new_file = newestfile(list)
print('from:',new_file[0])
print('to:',shutil.copy(new_file[0], 'C:\\Users\\Administrator\\Desktop\\img\\a.xml'))

運行結果:

('newest file is', ('C:\\Users\\Administrator\\Desktop\\img\\logo.gif', 1535508866.833419))
('from:', 'C:\\Users\\Administrator\\Desktop\\img\\logo.gif')
('to:', None)

方法說明:

def listdir(path, list_name): #傳入存儲的list
 for file in os.listdir(path):
  file_path = os.path.join(path, file)
  if os.path.isdir(file_path): #如果是目錄,則遞歸執行該方法
   listdir(file_path, list_name)
  else:
    list_name.append((file_path,os.path.getctime(file_path))) #把文件路徑,文件創建時間加入list中

def newestfile(target_list): #傳入包含文件路徑,文件創建時間的list
 newest_file = target_list[0] #冒泡算法找出時間最大的
 for i in range(len(target_list)):
  if i < (len(target_list)-1) and newest_file[1] < target_list[i+1][1]:
   newest_file = target_list[i+1]
  else:
   continue
 print('newest file is',newest_file)
 return newest_file

shutil.copy(new_file[0], 'C:\\Users\\Administrator\\Desktop\\img\\a.xml') #文件拷貝

補充:shutil.copy(source, destination)的使用說明

shutil.copy(source, destination)(這種復制形式使用的前提是必須要有 os.chdir(你要處理的路徑)

source/destination 都是字符串形式的路勁,其中destination是:

  • 1、可以是一個文件的名稱,則將source文件復制為新名稱的destination
  • 2、可以是一個文件夾,則將source文件復制到destination中
  • 3、若這個文件夾不存在,則將source目標文件內的內容復制到destination中

更多關于Python相關內容感興趣的讀者可查看本站專題:《Python文件與目錄操作技巧匯總》、《Python文本文件操作技巧匯總》、《Python數據結構與算法教程》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》及《Python入門與進階經典教程》

希望本文所述對大家Python程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

博爱县| 南雄市| 上犹县| 平罗县| 古交市| 漾濞| 龙川县| 丹江口市| 满洲里市| 金昌市| 甘泉县| 毕节市| 涡阳县| 康马县| 永嘉县| 渝中区| 清徐县| 静安区| 天全县| 金川县| 镇宁| 宣化县| 博兴县| 重庆市| 措美县| 共和县| 蓬溪县| 阿坝县| 泰宁县| 七台河市| 常山县| 丰宁| 荔浦县| 拜泉县| 巨鹿县| 梁河县| 德清县| 甘孜县| 涿鹿县| 陆川县| 康马县|