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 中获取文件的最后修改时间,我这样做:
lastmodifiedTime = os.path.getmtime(filename)
如何获得创建时间?
如果您在 Windows 上,os.path.getctime()则为文件创建时间。在其他平台上,不存储信息,该函数返回最后更改时间。
os.path.getctime()
尝试os.path.getctime获取创建时间。
os.path.getctime