Python os.close()
Python中的os.close()方法用于关闭给定的文件描述符,这样它就不再引用任何文件或其他资源,并且可以重用。
文件描述符是一个小整型值,对应于一个文件或其他输入/输出资源,如管道或网络套接字。一个文件描述符是一个资源的抽象指示器,并作为句柄来执行各种低级的I/O操作,如读,写,发送等。
例如:标准输入通常是值为0的文件描述符,标准输出通常是值为1的文件描述符,标准错误通常是值为2的文件描述符。
当前进程打开的其他文件将获得值3、4、5等等。
语法:os.close(fd)
参数:
fd:要关闭的文件描述符。
返回类型:此方法不返回任何值
示例1
使用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