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
From Geoff Chappell's The Windows Explorer Command Line
import subprocess subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"')