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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。