用法:
os.closerange(fd_low, fd_high)
關閉從
fd_low
(包括)到fd_high
(不包括)的所有文件說明符,忽略錯誤。相當於(但比):for fd in range(fd_low, fd_high): try: os.close(fd) except OSError: pass
相關用法
- Python os.closerange()用法及代碼示例
- Python os.close()用法及代碼示例
- Python os.chflags()用法及代碼示例
- Python os.ctermid()用法及代碼示例
- Python os.chroot()用法及代碼示例
- Python os.cpu_count()用法及代碼示例
- Python os.chown()用法及代碼示例
- Python os.chdir()用法及代碼示例
- Python os.chmod用法及代碼示例
- Python os.confstr()用法及代碼示例
- Python os.chmod()用法及代碼示例
- Python os.path.normcase()用法及代碼示例
- Python os.read()用法及代碼示例
- Python os.DirEntry.inode()用法及代碼示例
- Python os.set_blocking()用法及代碼示例
- Python os.pathconf()用法及代碼示例
- Python os.WCOREDUMP()用法及代碼示例
- Python os.fork()用法及代碼示例
- Python os.mkfifo()用法及代碼示例
- Python os.tcsetpgrp()用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 os.closerange。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。