Python如何获取一个文件的创建和修改时间【面试题详解】

今天爱分享给大家带来Python如何获取一个文件的创建和修改时间【面试题详解】,希望能够帮助到大家。
跨平台的获取文件创建及修改时间的方法

你有很多选择

使用os.path.getmtime或者os.path.getctime


import os.path, time
print "last modified: %s" % time.ctime(os.path.getmtime(file))
print "created: %s" % time.ctime(os.path.getctime(file))

或者os.stat


import os, time
(mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime) = os.stat(file)
print "last modified: %s" % time.ctime(mtime)

注意,ctime()并非指*nix系统中文件创建时间,而是这个节点数据的最后修改时间

人已赞赏
Python

Python读一个文件如何获取每一行内容(不包括换行符)【面试题详解】

2020-12-27 15:22:47

Python

Python如何将字符串转换为datetime【面试题详解】

2020-12-27 15:26:27

'); })();