The stat Module : Introduction : File PYTHON TUTORIALS


PYTHON TUTORIALS » File » Introduction »

 

The stat Module


import os, sys
from stat import *

sName = "test.txt"

if os.accesssName, os.F_OK == False :
    print "That file name doesn't exist!"
    exit()

sStat = os.statsName )

mMode= sStat[ST_MODE]
if S_ISDIR(mMode:
    print "The path is a directory"
elif S_ISREG(mMode:
    print "The path is a file"
else :
    print "I have no idea what the path is"

userID = sStat[ST_UID]
print str(userID)

fSize = sStat[ST_SIZE]
print str(fSize)

accessTime = sStat[ST_ATIME]
print str(accessTime)
modTime = sStat[ST_MTIME]
print str(modTime)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo File
» Introduction