要获取Python中文件上次修改的时间,可以使用os模块中的os.path.getmtime()
函数。这个函数返回文件的上次修改时间,以Unix时间戳的形式表示。
以下是一个示例代码:
import os
file_path = 'example.txt'
last_modified_time = os.path.getmtime(file_path)
print('上次修改时间:', last_modified_time)
在这个示例中,我们使用os.path.getmtime()
函数获取example.txt
文件的上次修改时间,并将其打印出来。
需要注意的是,os.path.getmtime()
函数返回的是Unix时间戳,如果需要将其转换为可读的时间格式,可以使用datetime
模块中的datetime.fromtimestamp()
函数。
例如:
import os
from datetime import datetime
file_path = 'example.txt'
last_modified_time = os.path.getmtime(file_path)
last_modified_datetime = datetime.fromtimestamp(last_modified_time)
print('上次修改时间:', last_modified_datetime)
这个示例中,我们将Unix时间戳转换为datetime
对象,并将其打印出来。
领取专属 10元无门槛券
手把手带您无忧上云