Python实现查询某个目录下修改时间最新的文件示例
程序员文章站
2022-11-14 22:01:17
本文实例讲述了python实现查询某个目录下修改时间最新的文件。分享给大家供大家参考,具体如下:
通过python脚本,查询出某个目录下修改时间最新的文件。
应用场景举...
本文实例讲述了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程序设计有所帮助。
下一篇: 国蟹市场龙虾价格并不是你以为的那样