码迷,mamicode.com
首页 > 编程语言 > 详细

Python 获取文件的创建时间,修改时间和访问时间

时间:2018-12-31 00:57:59      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:相同   style   time   ubunt   def   utf8   get   path   bsp   

 

 

# 用到的知识
# os.path.getatime(file) 输出文件访问时间
# os.path.getctime(file) 输出文件的创建时间
# os.path.getmtime(file) 输出文件最近修改时间

#-*- encoding=utf8 -*-
import time
import os

def fileTime(file):
  return [
    time.ctime(os.path.getatime(file)),
    time.ctime(os.path.getctime(file)),
    time.ctime(os.path.getmtime(file))]

times = fileTime("d")

#times = fileTime("ccc")
print(times)


 

查看文件夹:

xxx@ubuntu:~/Desktop$ ls d/
fff  hhh  iii  nnn  ppp

touch 文件夹d里面已经存在的文件后,文件夹d的访问时间,创建时间和最后修改时间不会变化

用 touch 在文件夹d中创建新文件,文件夹d的创建时间和最后修改时间都会改变,且两个时间相同

用vi 在文件夹d中创建新文件,文件夹d的创建时间和最后修改时间都会改变,且两个时间相同

编辑文件夹d里面的文件后,文件夹d的创建时间和最后修改时间都会变化,且两个时间相同

ls d/,会导致d文件夹的访问时间改变

 

查看文件:

xxx@ubuntu:~/Desktop$ ls
ccc d

修改ccc文件的内容,访问时间,创建时间和最后修改时间都会改变,且时间相同

touch 已经存在的ccc文件,ccc文件的访问时间,创建时间和最后修改时间都会改变,且时间相同

 

Python 获取文件的创建时间,修改时间和访问时间

标签:相同   style   time   ubunt   def   utf8   get   path   bsp   

原文地址:https://www.cnblogs.com/sea-stream/p/10201195.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!