python使用os.path.getatime、os.path.getctime和os.path.getmtime获取文件或目录的最近访问时间、创建时间和修改时间

参考链接: os.path.getatime(path)
参考链接: os.path.getmtime(path)
参考链接: os.path.getctime(path)

在这里插入图片描述
代码实验展示:

import os
import time
# --------------------------------------------------------#
filePath = r'我的文件.txt'
print('\n'+filePath)
accessTime = os.path.getatime(filePath)
print('访问时间:',accessTime,time.ctime(accessTime))

createTime = os.path.getctime(filePath)
print('创建时间:',createTime,time.ctime(createTime))

modifyTime = os.path.getmtime(filePath)
print('修改时间:',modifyTime,time.ctime(modifyTime))

# --------------------------------------------------------#
filePath = r'D:\Python\Python35\Lib\site-packages\jieba'
print('\n'+filePath)
accessTime = os.path.getatime(filePath)
print('访问时间:',accessTime,time.ctime(accessTime))

createTime = os.path.getctime(filePath)
print('创建时间:',createTime,time.ctime(createTime))

modifyTime = os.path.getmtime(filePath)
print('修改时间:',modifyTime,time.ctime(modifyTime))

控制台结果输出:

Windows PowerShell
版权所有 (C) Microsoft Corporation。保留所有权利。

尝试新的跨平台 PowerShell https://aka.ms/pscore6

加载个人及系统配置文件用了 1151 毫秒。
(base) PS C:\Users\chenxuqi\Desktop\News4cxq\my-experiments>  & 'D:\Anaconda3\envs\pytorch_1.7.1_cu102\python.exe' 'c:\Users\chenxuqi\.vscode\extensions\ms-python.python-2021.1.502429796\pythonFiles\lib\python\debugpy\launcher' '52628' '--' 'c:\Users\chenxuqi\Desktop\News4cxq\my-experiments\test2.py'

我的文件.txt
访问时间: 1618842007.5554655 Mon Apr 19 22:20:07 2021
创建时间: 1618841512.1419275 Mon Apr 19 22:11:52 2021
修改时间: 1618841876.5396962 Mon Apr 19 22:17:56 2021

D:\Python\Python35\Lib\site-packages\jieba
访问时间: 1618841059.3642726 Mon Apr 19 22:04:19 2021
创建时间: 1614405250.9173985 Sat Feb 27 13:54:10 2021
修改时间: 1614405252.3822095 Sat Feb 27 13:54:12 2021
(base) PS C:\Users\chenxuqi\Desktop\News4cxq\my-experiments> conda activate pytorch_1.7.1_cu102
(pytorch_1.7.1_cu102) PS C:\Users\chenxuqi\Desktop\News4cxq\my-experiments> 
  • 6
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值