Python | shutil.which() method
Shutil module in Python provides many functions of high-level operations on files and collections of files. It comes under Python’s standard utility modules. This module helps in automating process of copying and removal of files and directories.
shutil.which() method tells the path to an executable application which would be run if the given cmd was called. This method can be used to find a file on computer which is present on the PATH.
Syntax: shutil.which(cmd, mode = os.F_OK | os.X_OK, path = None)
Parameters:
cmd: A string representing the file.
mode: This parameter specifies mode by which method should execute. os.F_OK tests existence of the path and os.X_OK Checks if path can be executed or we can say mode determines if the file exists and executable.
path: This parameter specifies the path to be used, if no path is specified then the results ofos.environ()are used
Return Value: This method returns the path to an executable application
Example #1 :
Using shutil.which() method to get location of Python
# Python program to explain shutil.which() method # importing os module import os # importing shutil module import shutil # cmd cmd = 'python' # Using shutil.which() method locate = shutil.which(cmd) # Print result print(locate) |
/usr/bin/python
Example #2 :
Using shutil.which() method to get location of C++
# Python program to explain shutil.which() method # importing os module import os # importing shutil module import shutil # cmd cmd = 'c++' # Using shutil.which() method locate = shutil.which(cmd) # Print result print(locate) |
/usr/bin/c++
Recommended Posts:
- class method vs static method in Python
- Python | os.dup() method
- Python | set() method
- Python | next() method
- Python | os.scandir() method
- Python | cmath.log() method
- Python | os.ctermid() method
- Python | os.getppid() method
- Python | Tensorflow abs() method
- Python | cmath.exp() method
- Python | os.strerror() method
- Python | sys.getrecursionlimit() method
- Python | os.readv() method
- Python | Tensorflow log() method
- Python | os.writev() method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



