python find file location code example
Example 1: find the path to a file python
import os
print os.path.abspath("something.exe")
Example 2: get full path of file python
>>> import os
>>> os.path.abspath("mydir/myfile.txt")
'C:/example/cwd/mydir/myfile.txt'