python获得文件创建时间和修改时间的方法
作者:秋风秋雨
这篇文章主要介绍了python获得文件创建时间和修改时间的方法,涉及Python针对文件属性的相关操作技巧,需要的朋友可以参考下
本文实例讲述了python获得文件创建时间和修改时间的方法。分享给大家供大家参考。具体如下:
这里需要用户从控制台输入文件路径
import os.path, time import exceptions class TypeError (Exception): pass if __name__ == '__main__': if (len(os.sys.argv) < 1): raise TypeError() else: print "os.sys.argv[0]: %s" % os.sys.argv[0] # os.sys.argv[0] is the current file, in this case, file_ctime.py f = os.sys.argv[0] mtime = time.ctime(os.path.getmtime(f)) ctime = time.ctime(os.path.getctime(f)) print "Last modified : %s, last created time: %s" % (mtime, ctime)
希望本文所述对大家的Python程序设计有所帮助。
您可能感兴趣的文章:
- python操作日期和时间的方法
- Python时间戳与时间字符串互相转换实例代码
- python利用datetime模块计算时间差
- 10种检测Python程序运行时间、CPU和内存占用的方法
- python中日期和时间格式化输出的方法小结
- Python中实现对Timestamp和Datetime及UTC时间之间的转换
- Python中datetime常用时间处理方法
- python中关于时间和日期函数的常用计算总结(time和datatime)
- python简单实现获取当前时间
- Python之日期与时间处理模块(date和datetime)
- Python日期时间模块datetime详解与Python 日期时间的比较,计算实例代码
- Python获取当前时间的方法
- python封装对象实现时间效果
- python获取当前时间对应unix时间戳的方法
- Python比较2个时间大小的实现方法
- Python3时间转换之时间戳转换为指定格式的日期方法详解