Metodo Python os.stat_float_times ()
Descrizione
Metodo Python stat_float_times() determina se stat_result rappresenta i timestamp come oggetti float.
Sintassi
Di seguito è riportata la sintassi per stat_float_times() metodo -
os.stat_float_times([newvalue])
Parametri
newvalue- Se newvalue è True, le chiamate future a stat () restituiscono float, se è False, le chiamate future su stat restituiscono ints. Se newvalue non è menzionato, restituisce le impostazioni correnti.
Valore di ritorno
Questo metodo restituisce True o False.
Esempio
L'esempio seguente mostra l'utilizzo del metodo stat_float_times ().
#!/usr/bin/python
import os, sys
# Stat information
statinfo = os.stat('a2.py')
print statinfo
statinfo = os.stat_float_times()
print statinfo
Quando eseguiamo il programma sopra, produce il seguente risultato:
posix.stat_result(st_mode=33188, st_ino=3940649674337682L, st_dev=277923425L,
st_nlink=1, st_uid=400, st_gid=401, st_size=335L, st_atime=1330498089, st_mtime=13
30498089, st_ctime=1330498089)
True