Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.set_inheritable()
Python中的方法用于设置指定文件描述符的可继承标志的值。
文件描述符的可继承标志告诉子描述符是否可以被子进程继承。例如:如果父进程有一个用于特定文件的文件描述符4,而父进程创建了一个子进程,那么如果文件描述符4的可继承标志,则子进程也将有该文件的描述符4。在父进程中设置。
用法: os.set_inheritable(fd, inheritable)
参数:
fd:要设置其可继承标志的文件描述符。
inheritable:代表可继承标志的新值的整数或布尔值。
返回类型:此方法不返回任何值。
代码:使用os.set_inheritable()方法设置给定文件描述符的“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
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.get_blocking()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.nC()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.getcwd()用法及代码示例
- Python os.access()用法及代码示例
- Python dict pop()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.nP()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.set_inheritable() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。