可能重复:
How to get file creation & modification date/times in Python?
我想获取文件夹的创建日期和时间。反正有没有在python中做到这一点?
谢谢
答案 0 :(得分:12)
您可以使用os.stat
来检索此信息。
os.stat(path).st_mtime // time of most recent content modification,
os.stat(path).st_ctime // platform dependent; time of most recent metadata change on Unix, or the time of creation on Windows)