os.stat_float_times([newvalue])
newvalue -- 如果 newvalue 為True,將來呼叫 stat() 返回值則為 float,如果是False,未來呼叫 stat ()函式則返回整數。如果未提及newvalue,則返回當前設定。
#!/usr/bin/python3 import os, sys # Stat information statinfo = os.stat('a2.py') print (statinfo) statinfo = os.stat_float_times() print (statinfo)
os.stat_result(st_mode=33206, st_ino=562949953508433, st_dev=1017554828, st_nlink=1, st_uid=0, st_gid=0, st_size=27, st_atime=1455597032, st_mtime=1455597032, st_ctime=1455562995) True