python 文件被重命名,如何获取“重命名时间”

发布于 2024-10-28 18:12:26 字数 108 浏览 1 评论 0原文

假设某些文件被Python脚本重命名,是否可以使用Python获得这个“重命名时间”(可以在Far Manager中看到)? (Windows)

似乎不可能通过STAT等 有什么想法吗?

lets say that some files were renamed by Python script, is it possible to get this 'rename time' using Python (It can be seen in Far Manager)? (Windows)

It seems it is not possible through STAT, etc
Any ideas ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深空失忆 2024-11-04 18:12:26

如果你问如何获取文件的修改日期,就是这样:

>>> import os
>>> import datetime
>>> stat = os.stat('/tmp/bacon')
>>> print datetime.datetime.fromtimestamp(stat.st_mtime)
2011-03-31 08:02:52.953873

If you're asking how to get the modification date of the file, it's this:

>>> import os
>>> import datetime
>>> stat = os.stat('/tmp/bacon')
>>> print datetime.datetime.fromtimestamp(stat.st_mtime)
2011-03-31 08:02:52.953873
巴黎夜雨 2024-11-04 18:12:26

这是不可能的,操作系统不存储有关文件的此类信息。由“atzz”在评论中回答

It is impossible, OS does not store such info about files. Answered by 'atzz' in comment

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文