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