Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设某些文件被 Python 脚本重命名,是否可以使用 Python 获得这个“重命名时间”(可以在 Far Manager 中看到)?(视窗)
似乎不可能通过 STAT 等有什么想法吗?
如果您要问如何获取文件的修改日期,那就是:
>>> import os >>> import datetime >>> stat = os.stat('/tmp/bacon') >>> print datetime.datetime.fromtimestamp(stat.st_mtime) 2011-03-31 08:02:52.953873
这是不可能的,操作系统不存储有关文件的此类信息。评论中的“atzz”回答