當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.get_inheritable()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自ihritik大神的英文原創作品 Python | os.get_inheritable() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。