Python OS文件/目录 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()方法的用法。
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!