gett tpaht of python file code example
Example 1: python get current file location
import os
os.path.dirname(os.path.abspath(__file__))
Example 2: find the path to a file python
import os
print os.path.abspath("something.exe")
import os
os.path.dirname(os.path.abspath(__file__))
import os
print os.path.abspath("something.exe")