OS module in Python provides functions for interacting with the operating system. OS comes under Python’s standard utility modules. This module provides a portable way of using operating system dependent functionality.
All functions in os module raise OSError in the case of invalid or inaccessible file names and paths, or other arguments that have the correct type, but are not accepted by the operating system.
os.get_exec_path()
method in Python is used to get the list of directories that will be searched for a named executable while launching a process.
Syntax: os.get_exec_path(env = None)
Parameter:
env (optional): A dictionary representing the environment variables. The default value of this parameter is None. If its value is None environ is used.Return Type: This method returns a list which represents the paths of directories that will be used to search a named executable while launching a process.
# 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']
Code #2: Specifying env parameter
# 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']
<!–
–>
Please Login to comment…