Python os.path.getmtime() 方法



Python os.path.getmtime() 方法用于检索文件或目录的最后修改时间。

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

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

语法

以下是 Python os.path.getmtime() 方法的基本语法 -


 os.path.getmtime(path)

参数

此方法接受一个字符串作为参数,该参数表示要检索其上次修改时间的文件的路径。

返回值

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

在以下示例中,我们将检索位于给定路径 “file_Path” 的文件的上次修改时间,并以秒为单位打印自 epoch 以来 -


import os
file_path = "/home/lenovo/documents/file.txt"
mtime = os.path.getmtime(file_path)
print("The file was modified at:",mtime)

输出

获得的输出如下 -

The file was accessed at: 1640227200.0

在这里,我们检索当前目录的上次修改时间,并以秒为单位打印自 epoch 以来 -


import os
current_dir = os.getcwd()
mtime = os.path.getmtime(current_dir)
print("The directory was modified at:",mtime)	

输出

以下是上述代码的输出 -

The directory was modified at: 1713938293.186791

此示例使用人类可读格式的 getmtime() 方法检索位于 Windows 系统上的文件的上次修改时间 -


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

输出

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

Thu Sep 14 17:26:04 2023

如果我们尝试检索不存在的文件路径的上次修改时间,getmtime() 方法会引发 “FileNotFoundError” -


import os
link_path = "/non/existent/path"
mtime = os.path.getmtime(link_path)
print("The path was modified at:",mtime) 	 	 	

输出

生成的结果如下所示 -

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