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

发布于 2024-12-07 20:59:51 字数 272 浏览 0 评论 0原文

可能的重复:
如何创建文件和创建文件Python 中修改日期/时间?

我想获取文件夹的创建日期和时间。有什么办法可以在 python 中做到这一点吗?

谢谢

Possible Duplicate:
How to get file creation & modification date/times in Python?

I would like to get the created date and time of a folder. Are there anyways to do that in python?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

压抑⊿情绪 2024-12-14 20:59:51

您可以使用 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)

You might use os.stat to retrieve this information.

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)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文