Python3 os.close()方法

2019-10-16 23:08:20
close()方法關閉與檔案相關聯的檔案描述符fd。

語法

以下是close()方法的語法:
os.close(fd)

引數

  • fd -- 這是該檔案的檔案描述符

返回值

這個方法沒有返回值

註:此函式適用於低階別的 I/O,返回必須適用於os.open() 或 pipe() 的一個檔案描述符。

範例

下面的範例說明 close()方法的使用。
#!/usr/bin/python3
import os, sys

# Open a file
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )

# Write one string
line="this is test" 
# string needs to be converted byte object
b=str.encode(line)
os.write(fd, b)

# Close opened file
os.close( fd )

print ("Closed the file successfully!!")
當我們執行上面的程式,它會產生以下結果:
Closed the file successfully!!