Python:如何获取文件夹的创建日期和时间?

时间:2011-10-03 06:50:56

标签: python directory

  

可能重复:
  How to get file creation & modification date/times in Python?

我想获取文件夹的创建日期和时间。反正有没有在python中做到这一点?

谢谢

1 个答案:

答案 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)