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