Python3 file.fileno()方法

2019-10-16 23:09:36
 fileno()方法返回所使用的底層實現,從作業系統 I/O 操作整數檔案描述符。

語法

以下是 fileno()方法的語法 -
fileObject.fileno() 

引數

  • NA

返回值

這個方法返回整數檔案描述符。

範例

下面的例子顯示 fileno()方法的使用。
#!/usr/bin/python3

# Open a file
fo = open("foo.txt", "wb")
print ("Name of the file: ", fo.name)

fid = fo.fileno()
print ("File Descriptor: ", fid)

# Close opend file
fo.close()
當我們執行上面的程式,會產生以下結果 -
Name of the file:  foo.txt
File Descriptor:  3