os.stat(path)
path -- 這是一個路徑,其狀態資訊是必需的。
# !/usr/bin/python3 import os, sys # showing stat information of file "foo.txt" statinfo = os.stat('foo.txt') print (statinfo)
os.stat_result(st_mode=33206, st_ino=281474976797706, st_dev=1017554828, st_nlink=1, st_uid=0, st_gid=0, st_size=13, st_atime=1455649253, st_mtime=1438077266, st_ctime=1455560006)