os.fstat(fd)
Get the status of the file descriptor fd. Return a stat_result
object.
As of Python 3.3, this is equivalent to os.stat(fd)
.
See also
The stat()
function.
os.fstat(fd)
Get the status of the file descriptor fd. Return a stat_result
object.
As of Python 3.3, this is equivalent to os.stat(fd)
.
See also
The stat()
function.
Please login to continue.