当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.close()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

os.close()Python中的方法用于关闭给定的文件描述符,因此它不再引用任何文件或其他资源,并且可以重用。
文件描述符是小整数值,与文件或其他输入/输出资源(例如管道或网络套接字)相对应。文件描述符是资源的抽象指示符,并充当执行各种较低级别I /O操作(如读取,写入,发送等)的句柄。例如:标准输入通常是值为0的文件描述符,标准输出通常是文件描述符值1和标准错误通常是值2的文件描述符。当前进程打开的其他文件将得到值3、4、5,依此类推。

用法: os.close(fd) 

参数:
fd:一个文件描述符,将被关闭。

返回类型:此方法不返回任何值

代码:使用os.close()方法关闭文件描述符
# Python program to explain os.close() method  
    
# importing os module  
import os 
  
# Path 
path = "/home/ihritik/Desktop/file2.txt"
  
  
# open the file and get 
# the file descriptor associated 
# with it using os.open() method 
fd = os.open(path, os.O_WRONLY) 
  
  
# Perform some operation 
# Lets write a string 
s = "GeeksForGeeks:A computer science portal for geeks"
  
# Convert string to bytes object 
line = str.encode(s) 
  
# Write string to file referred by 
# by the file descriptor 
os.write(fd, line) 
  
  
# close the file descriptor 
os.close(fd) 
print("File descriptor closed successfully")
输出:
File descriptor closed successfully


相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.close() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。