OS Stat
To perform a stat system call on the given path, we can use the os.stat() functionof OS.
First import the the os module and then simply specify the path of the file that you want to perform the system call on.
Example
Let’s see an example of how to use the os.stat function
import os
print "-" * 30
print "os.stat = status of a file " , os.stat('/usr/bin/vi')
print "-" * 30
Recommended Python Training
Course: Python 3 For Beginners
Over 15 hours of video content with guided instruction for beginners. Learn how to create real world applications and master the basics.