Python os.get_inheritable() - 获取指定文件描述符的可继承标志的值

Python os.get_inheritable()

Python中的os.get_inheritable()方法用于获取指定文件描述符的可继承标志的值

文件描述符的可继承标志告诉子进程是否可以继承它。例如:如果父进程有一个文件描述符4用于一个特定的文件,并且父进程创建了一个子进程,那么这个子进程对于同一个文件也有一个文件描述符4,如果父进程中文件描述符4的可继承标志被设置。

语法:os.get_inheritable(fd)

参数:

fd:要检查其可继承标志的文件描述符。

返回类型:此方法返回一个类bool的布尔值,该值表示指定文件描述符的可继承标志的值。

示例1

使用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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程