Python os.closerange() 方法
python os.closerange() 方法
os.closerange() 方法用于關(guān)閉所有文件描述符 fd,從 fd_low (包含) 到 fd_high (不包含), 錯(cuò)誤會(huì)忽略。
語(yǔ)法
closerange()方法語(yǔ)法格式如下:
os.closerange(fd_low, fd_high);
參數(shù)
- fd_low -- 最小文件描述符
- fd_high -- 最大文件描述符
該方法類似于:
for fd in xrange(fd_low, fd_high): try: os.close(fd) except oserror: pass
返回值
該方法沒(méi)有返回值。
實(shí)例
以下實(shí)例演示了 closerange() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 打開(kāi)文件 fd = os.open( "foo.txt", os.o_rdwr|os.o_creat ) # 寫(xiě)入字符串 os.write(fd, "this is test") # 關(guān)閉文件 os.closerange( fd, fd) print "關(guān)閉文件成功!!"
執(zhí)行以上程序輸出結(jié)果為:
關(guān)閉文件成功!!
相關(guān)文章
- Python 環(huán)境搭建
- Python 變量類型
- Python pass 語(yǔ)句
- Python Number 數(shù)字
- Python 模塊
- Python 文件I/O
- Python SMTP發(fā)送郵件
- Python 列表
- Python 二維數(shù)組
- Python 節(jié)點(diǎn)
- Python 樹(shù)遍歷算法
- Python 排序算法
- Python 算法類
- Python 攤銷分析
- Python3 簡(jiǎn)介
- Python3 解釋器
- Python3 for while 循環(huán)語(yǔ)句
- Python3 模塊
- Python3 錯(cuò)誤和異常
- Python MongoDB 數(shù)據(jù)庫(kù)連接 - PyMongo 驅(qū)動(dòng)