📜  Python| os.set_inheritable() 方法

📅  最后修改于: 2022-05-13 01:54:38.175000             🧑  作者: Mango

Python| os.set_inheritable() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。

Python中的os.set_inheritable()方法用于设置指定文件描述符的可继承标志的值。

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

代码:使用 os.set_inheritable() 方法设置给定文件描述符的“可继承”标志。
# Python program to explain os.set_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)
  
  
# Print the current value of
# inheritable flag of the 
# file descriptor fd using
# os.get_inheritable() method
print("Current value of inheritable flag:", os.get_inheritable(fd))
  
# Change the inheritable flag 
# of the file descriptor fd 
# using os.set_inheritable() method
inheritable = True
os.set_inheritable(fd, inheritable)
print("Inheritable flag modified")
  
  
# Print the modified value of
# inheritable flag of the 
# file descriptor using
# os.get_inheritable() method
print("Current value of inheritable flag:", os.get_inheritable(fd))
输出:
Current value of inheritable flag: False
Inheritable flag modified
Current value of inheritable flag: True