怎样得到一个文件的属性??

怎样得到一个文件的属性??

在python里怎样得到一个文件的属性,特别是日期
os.stat(filename)
返回如下的元组
st_mode (protection bits), st_ino (inode number), st_dev (device), st_nlink (number of hard links), st_uid (user ID of owner), st_gid (group ID of owner), st_size (size of file, in bytes), st_atime (time of most recent access), st_mtime (time of most recent content modification), st_ctime (platform dependent)

eg.
>>>os.stat('mailer.py')
(33206, 0L, 2, 1, 0, 0, 7567L, 1160805596, 1138341432, 1160805596)
                                                最近存取时间, 最近修改时间, 系统决定 windows上是文件创建时间
具体的看看os模块的帮助文档