Python实现查询某个目录下修改时间最新的文件示例


Posted in Python onAugust 29, 2018

本文实例讲述了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万年历实现代码 含运行结果
May 20 Python
利用Python-iGraph如何绘制贴吧/微博的好友关系图详解
Nov 02 Python
matplotlib给子图添加图例的方法
Aug 03 Python
django 将model转换为字典的方法示例
Oct 16 Python
python判断计算机是否有网络连接的实例
Dec 15 Python
Python变量访问权限控制详解
Jun 29 Python
python实现LRU热点缓存及原理
Oct 29 Python
在TensorFlow中屏蔽warning的方式
Feb 04 Python
浅谈python输出列表元素的所有排列形式
Feb 26 Python
Django中F函数的使用示例代码详解
Jul 06 Python
python 实现波浪滤镜特效
Dec 02 Python
OpenCV-Python实现油画效果的实例
Jun 08 Python
有关Python的22个编程技巧
Aug 29 #Python
Python实现多线程的两种方式分析
Aug 29 #Python
Python运维自动化之nginx配置文件对比操作示例
Aug 29 #Python
python单例模式实例解析
Aug 28 #Python
Python3.7实现中控考勤机自动连接
Aug 28 #Python
python实现遍历文件夹修改文件后缀
Aug 28 #Python
Python绘制正余弦函数图像的方法
Aug 28 #Python
You might like
PHP 写文本日志实现代码
2010/05/18 PHP
PHP、Python和Javascript的装饰器模式对比
2015/02/03 PHP
Laravel 5框架学习之Eloquent 关系
2015/04/09 PHP
Laravel框架实现定时发布任务的方法
2018/08/16 PHP
ECMAScript 基础知识
2007/06/29 Javascript
Jquery中dialog属性小记
2010/09/03 Javascript
怎么判断js脚本加载完成
2014/02/28 Javascript
JS判断字符串变量是否含有某个字串的实现方法
2016/06/03 Javascript
BootStrap智能表单实战系列(八)表单配置json详解
2016/06/13 Javascript
用原生JS对AJAX做简单封装的实例代码
2016/07/13 Javascript
AngularJS出现$http异步后台无法获取请求参数问题的解决方法
2016/11/03 Javascript
自带气泡提示的vue校验插件(vue-verify-pop)
2017/04/07 Javascript
nodejs multer实现文件上传与下载
2017/05/10 NodeJs
vue-cli3使用 DllPlugin 实现预编译提升构建速度
2019/04/24 Javascript
vuex分模块后,实现获取state的值
2020/07/26 Javascript
mustache.js实现首页元件动态渲染的示例代码
2020/12/28 Javascript
深入理解python中的浅拷贝和深拷贝
2016/05/30 Python
python3.4用循环往mysql5.7中写数据并输出的实现方法
2017/06/20 Python
解决Python plt.savefig 保存图片时一片空白的问题
2019/01/10 Python
使用python绘制二元函数图像的实例
2019/02/12 Python
scrapy-redis的安装部署步骤讲解
2019/02/27 Python
Python二叉搜索树与双向链表转换算法示例
2019/03/02 Python
Python3.5常见内置方法参数用法实例详解
2019/04/29 Python
python django model联合主键的例子
2019/08/06 Python
基于Python实现剪切板实时监控方法解析
2019/09/11 Python
Python classmethod装饰器原理及用法解析
2020/10/17 Python
如果有两个类A,B,怎么样才能使A在发生一个事件的时候通知B
2016/03/12 面试题
家具促销活动方案
2014/02/16 职场文书
企业厂务公开实施方案
2014/03/26 职场文书
委托书的写法
2014/09/16 职场文书
员工自我评价范文
2015/03/11 职场文书
中学生社会实践教育活动总结
2015/05/06 职场文书
2016优秀大学生个人事迹材料范文
2016/03/01 职场文书
Vue详细的入门笔记
2021/05/10 Vue.js
浅谈Python协程asyncio
2021/06/20 Python
python解析json数据
2022/04/29 Python