# Import os Library
import os
# Open file
fd = os.open( "test.txt", os.O_RDONLY)
# Get info about the file system of the file
print (os.fstatvfs(fd))
# Close file
os.close(fd)