📜  Python| os.path.getatime() 方法(1)

📅  最后修改于: 2023-12-03 15:04:21.417000             🧑  作者: Mango

Python | os.path.getatime() 方法

Python的os.path模块提供了很多关于文件路径操作的方法,getatime()是其中之一,可以用于获取文件的最后访问时间。

语法

以下是os.path.getatime()方法的语法。

os.path.getatime(path)
参数
  • path - 文件路径
返回值

返回文件的最后访问时间,单位是秒。

示例

下面的示例演示了如何使用os.path.getatime()方法获取文件的最后访问时间。

import os

# 指定文件路径
path = "test.txt"

# 获取最后访问时间
access_time = os.path.getatime(path)

# 输出最后访问时间
print("文件最后访问时间为:", access_time)

输出结果:

文件最后访问时间为: 1621038546.4724605
注意事项

如果文件不存在或者访问出错,会抛出OSError异常。