stat
 

# Module 'stat'
#
# Defines constants and functions for interpreting stat/lstat struct
# as returned by os.stat() and os.lstat() (if it exists).
#
# Suggested usage: from stat import *
#
# XXX Strictly spoken, this module may have to be adapted for each POSIX
# implementation; in practice, however, the numeric constants used by
# stat() are almost universal (even for stat() emulations on non-UNIX
# systems like MS-DOS).


 Functions
                                                                                                                                                                                                                               
S_IFMT(mode)
no doc string
S_IMODE(mode)
# Extract bits from the mode
S_ISBLK(mode)
no doc string
S_ISCHR(mode)
no doc string
S_ISDIR(mode)
# Functions to test for each file type
S_ISFIFO(mode)
no doc string
S_ISLNK(mode)
no doc string
S_ISREG(mode)
no doc string
S_ISSOCK(mode)
no doc string