Python每日进阶--获取文件的创建时间,修改时间和访问时间

#endcoding: utf-8

# 获取文件的时间属性
# 用到的知识
# os.getcwd() 方法用于返回当前工作目录
# os.path.getatime(file) 输出文件访问时间
# os.path.getctime(file) 输出文件的创建时间
# os.path.getmtime(file) 输出文件最近修改时间


import time 
import os

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

times = fileTime(os.getcwd())
print(times)
print(type(times))
    原文作者:图解前端
    原文地址: https://blog.csdn.net/webofrxy/article/details/80391063
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞