Python3 os.closerange()方法

2019-10-16 23:08:21
closerange()方法關閉從 fd_low(含)至 fd_high(不包括)的所有檔案描述符,並忽略錯誤。這個方法在 Python2.6 版本開始引入。

語法

以下是 closerange() 方法的語法:
os.closerange(fd_low, fd_high)

引數

  • fd_low -- 這是被關閉的最低檔案描述符

  • fd_high -- 這是被關閉的最高檔案描述符

此函式等同於:
for fd in xrange(fd_low, fd_high):
    try:
        os.close(fd)
    except OSError:
        pass

返回值

此方法不返回任何值。

範例

下面的範例演示 closerange() 方法的使用。
#!/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 a single opened file
os.closerange( fd, fd)

print ("Closed all the files successfully!!") 

這將建立指定的檔案 foo.txt,然後按給出內容寫入該檔案。這將產生以下結果:

Closed all the files successfully!!