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" 的文件的最后修改时间,并以自纪元以来的秒数打印它:

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

示例

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

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

示例

此示例使用 Windows 系统上的 getmtime() 方法以人类可读的格式检索文件最后修改时间:

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'
os_path_methods.htm
广告