共计 692 个字符,预计需要花费 2 分钟才能阅读完成。
要获取文件的日期,可以使用 Python 的 os 模块和 datetime 模块。
首先,导入所需的模块:
import os
from datetime import datetime
然后,使用 os 模块的 stat
函数获取文件的统计信息:
file_stat = os.stat('file.txt')
接下来,使用 datetime 模块的 fromtimestamp
函数将文件的修改时间戳转换为日期时间对象:
modification_time = datetime.fromtimestamp(file_stat.st_mtime)
最后,可以使用日期时间对象的 strftime
方法将日期时间对象格式化为所需的日期字符串:
modification_date = modification_time.strftime('%Y-%m-%d')
完整的代码示例:
import os
from datetime import datetime
file_stat = os.stat('file.txt')
modification_time = datetime.fromtimestamp(file_stat.st_mtime)
modification_date = modification_time.strftime('%Y-%m-%d')
print(f'The modification date of the file is: {modification_date}')
请将上述代码中的 file.txt
替换为要获取日期的文件的路径。
丸趣 TV 网 – 提供最优质的资源集合!
正文完