当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。