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 中,如何获取符号链接的修改日期,而不是它指向的文件?
我在 Ubuntu 上使用 Python 2.7。
谢谢。
使用os.lstat()调用;它就像os.stat()但不遵循符号链接一样工作:
os.lstat()
os.stat()
import os modification_time = os.lstat(path_to_symlink).st_mtime