os.fstatvfs(fd)
Return information about the filesystem containing the file associated with file descriptor fd, like statvfs()
. As of Python 3.3, this is equivalent to os.statvfs(fd)
.
Availability: Unix.
os.fstatvfs(fd)
Return information about the filesystem containing the file associated with file descriptor fd, like statvfs()
. As of Python 3.3, this is equivalent to os.statvfs(fd)
.
Availability: Unix.
Please login to continue.