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
#!/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!!