Python| os.get_inheritable() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。
Python中的os.get_inheritable()
方法用于获取指定文件描述符的可继承标志的值。
文件描述符的可继承标志告诉子进程是否可以继承它。例如:如果父进程具有用于特定文件的文件描述符 4,并且父进程创建了一个子进程,则子进程也将具有用于同一文件的文件描述符 4,如果文件描述符 4 的可继承标志在父进程中设置。
Syntax: os.get_inheritable(fd)
Parameter:
fd: A file descriptor whose inheritable flag is to be checked.
Return Type: This method returns a Boolean value of class bool which represents the value of inheritable flag of the specified file descriptor.
代码:使用 os.get_inheritable() 方法获取给定文件描述符的“可继承”标志的值。
# Python program to explain os.get_inheritable() method
# importing os module
import os
# File path
path = "/home/ihritik/Desktop/file.txt"
# Open the file and get
# the file descriptor associated
# with it using os.open() method
fd = os.open(path, os.O_RDWR | os.O_CREAT)
# Get the value of
# inheritable flag of the
# file descriptor fd using
# os.get_inheritable() method
inheritable = os.get_inheritable(fd)
# print the value of inheritable flag
print("Value of inheritable flag:", inheritable)
# Value of inheritable flag can be set / unset
# using os.set_inheritable() method
# For example:
# change inheritable flag
os.set_inheritable(fd, True)
# Print the value of inheritable flag
inheritable = os.get_inheritable(fd)
print("Value of inheritable flag:", inheritable)
输出:
Value of inheritable flag: False
Value of inheritable flag: True