Python 3 - os.closerange() 方法
-
描述
方法closerange()关闭从fd_low(含)到fd_high(不含)的所有文件描述符,忽略错误。该方法在Python 2.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!!