gpt4 book ai didi

python - 获取文本文件中列出的所有文件的时间戳

转载 作者:太空宇宙 更新时间:2023-11-04 04:54:12 25 4
gpt4 key购买 nike

我正在尝试获取文本文件中所有文件的时间戳。
文本文件中列出的文件:

folder/file1
folder/file2

系统应该输出时间戳:

folder/file1 timestamp-of-file
folder/file2 timestamp-of-file

这是我的代码:

import os
f = open('config.dat','r')
list_contents = f.read().split('\n')
timestamp=os.path.getmtime(list_contents)
for a in timestamp:
print(timestamp)
f.close()

最佳答案

试试这个:

import os
f = open('config.dat','r')
list_contents = f.read().split('\n')
f.close()
for a in list_contents:
print(a, os.path.getmtime(a))

os.path.getmtime(path) 返回要在path 下找到的文件的时间戳,因此您必须传递 的每个条目list_contents 与此函数分开。

关于python - 获取文本文件中列出的所有文件的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47456261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com