I have installed python 2.7 and trying to run below code which always gives error:
# !/usr/bin/python
import os, sys
stinfo = os.statvfs("C:\Tools")
And error comes as :
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'statvfs'
Any clue to make it work?