how to find the path of a file in python code example
Example 1: find the path to a file python
import os
print os.path.abspath("something.exe")
Example 2: python how to get directory of script
import os
print(os.path.abspath(''))
Example 3: python get path of current file
import pathlib
pathlib.Path(__file__).parent.absolute()
Example 4: get pyhton file path python
import os
os.path.realpath(__file__)