In Python, how to jump to file in Windows Explorer (like in Winamp)? I found a solution for jumping to folders:
import subprocess
subprocess.Popen('explorer "C:\path\of\folder"')
but I have no solution for files. Please help.
In Python, how to jump to file in Windows Explorer (like in Winamp)? I found a solution for jumping to folders:
import subprocess
subprocess.Popen('explorer "C:\path\of\folder"')
but I have no solution for files. Please help.
From Explorer.exe Command-Line Options for Windows XP
import subprocess
subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"')