Python 文件 fileno()方法
fileno()方法返回整数文件描述符,该描述符由底层实现用于从操作系统请求I/O操作。
语法
fileno()方法的语法如下:
fileObject.fileno()
参数
NA
返回值
该方法返回整数型文件描述符。
示例
下面的示例展示了fileno()方法的用法。
# Open a file
fo = open("foo.txt", "wb")
print ("Name of the file: ", fo.name)
fid = fo.fileno()
print ("File Descriptor: ", fid)
# Close the opened file
fo.close()
当我们运行上面的程序时,它产生以下输出结果 –
Name of the file: foo.txt
File Descriptor: 3