Python檔案fileno()方法

2019-10-16 23:05:23

Python檔案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