Python: How to get the created date and time of a folder?
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
How to get file creation & modification date/times in Python?
号
我想获取文件夹的创建日期和时间。在Python中有什么方法可以做到这一点吗?
谢谢你
您可以使用
1 2 | 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) |