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


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


Python中的OS模塊提供了與操作係統進行交互的函數。操作係統屬於Python的標準實用程序模塊。該模塊提供了使用依賴於操作係統的函數的便攜式方法。

如果文件名和路徑無效或無法訪問,或者具有正確類型但操作係統不接受的其他參數,則os模塊中的所有函數都會引發OSError。

os.get_exec_path()Python中的方法用於獲取啟動進程時將搜索命名可執行文件的目錄列表。


用法: os.get_exec_path(env = None)

參數:
env(可選):表示環境變量的字典。此參數的默認值為“無”。如果其值為None,則使用環境。

返回類型:此方法返回一個列表,該列表表示啟動進程時將用於搜索命名可執行文件的目錄的路徑。

代碼1:os.get_exec_path()方法的使用
# Python program to explain os.get_exec_path() method  
    
# importing os module  
import os 
  
# Get the list of directories  
# that will be used to search  
# a named executable 
# while launching a process 
exec_path = os.get_exec_path() 
  
# Print the list 
print("Following paths will be searched for a named executable:") 
print(exec_path)
輸出:
Following paths will be searched for a named executable:
['/usr/local/sbin', '/usr/local/bin', '/usr/sbin', '/usr/bin', '/sbin', '/bin', '/usr/games', '/usr/local/games', '/snap/bin', '/usr/local/java/jdk-10.0.1/bin', '/usr/local/java/jdk-10.0.1/jre/bin', '/opt/jdk-10.0.1/bin', '/opt/jdk-10.0.1/jre/bin']

代碼2:指定環境參數

# Python program to explain os.get_exec_path() method  
    
# importing os module  
import os 
  
# Dictionary of environment variable 
env = {'HOME': '/home/ihritik'} 
  
  
# Get the list of directories  
# that will be used to search  
# a named executable 
# while launching a process 
exec_path = os.get_exec_path(env) 
  
# Print the list 
print("Following paths will be searched for a named executable:") 
print(exec_path)
輸出:
Following paths will be searched for a named executable:
['', '/bin', '/usr/bin']


相關用法


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