Python os.path.getatime() 方法



Python 的 os.path.getatime() 方法用于检索文件或目录的最后访问时间。

该方法返回一个浮点数,表示自纪元(1970年1月1日00:00:00 UTC)以来对指定路径的最近一次访问时间,以秒为单位。

如果指定的路径不存在,或者存在阻止访问路径的权限问题,则该方法分别引发 FileNotFoundErrorPermissionError

语法

以下是 Python os.path.getatime() 方法的基本语法:

os.path.getatime(path)

参数

此方法接受一个字符串作为参数,表示要检索其最后访问时间的文件的路径。

返回值

该方法返回一个浮点数,表示自纪元(1970年1月1日)以来文件上次被访问的秒数。

示例

在下面的示例中,我们检索位于给定路径“file_Path”的文件的最后访问时间,并以自纪元以来的秒数打印它:

import os
file_path = "/home/lenovo/documents/file.txt"
atime = os.path.getatime(file_path)
print("The file was accessed at:",atime)

输出

获得的输出如下:

The file was accessed at: 1640227200.0

示例

这里,我们检索当前目录的最后访问时间,并以自纪元以来的秒数打印它:

import os
current_dir = os.getcwd()
atime = os.path.getatime(current_dir)
print("The directory was accessed at:",atime)   

输出

以上代码的输出如下:

The directory was accessed at: 1714131137.8021567

示例

此示例使用 getatime() 方法以人类可读的格式检索 Windows 系统上指定文件路径的最后访问时间:

import os
import time
file_path = "C:\\Users\\Lenovo\\Downloads\\sql.txt"
atime = os.path.getatime(file_path)
print(time.ctime(atime))

输出

我们得到如下所示的输出:

Fri Apr 26 18:30:51 2024

示例

如果我们尝试检索不存在的文件路径的最后访问时间,getatime() 方法会引发“FileNotFoundError”:

import os
link_path = "/non/existent/path"
atime = os.path.getatime(link_path)
print("The path was accessed at:",atime)       

输出

产生的结果如下所示:

Traceback (most recent call last):
  File "C:\Users\Lenovo\Desktop\untitled.py", line 3, in <module>
    atime = os.path.getatime(link_path)
  File "<frozen genericpath>", line 72, in getatime
FileNotFoundError: [WinError 3] The system cannot find the path specified: '/non/existent/path'
os_path_methods.htm
广告