Easy Tutorial
❮ Python String Maketrans Python Os Fpathconf ❯

Python3 os.stat_float_times() Method

Python3 OS File/Directory Methods


Overview

The os.stat_float_times() method is used to determine whether stat_result displays timestamps as float objects.

Syntax

The syntax for the stat_float_times() method is as follows:

os.stat_float_times([newvalue])

Parameters

Return Value

Returns True or False.

Example

The following example demonstrates the use of the stat_float_times() method:

#!/usr/bin/python3

import os, sys

# Stat information
statinfo = os.stat('a2.py')

print(statinfo)
statinfo = os.stat_float_times()
print(statinfo)

Executing the above program outputs:

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

Python3 OS File/Directory Methods

❮ Python String Maketrans Python Os Fpathconf ❯