In Python, how do I jump to a file in the Windows Explorer? I found a solution for jumping to folders:
import subprocess subprocess.Popen(\'explorer \"C:\\pa
For some reason, on windows 7 it always opens the users Path, for me following worked out:
import subprocess subprocess.call("explorer C:\\temp\\yourpath", shell=True)