explorer

Open explorer on a file

Open explorer on a file Question: 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:pathoffolder”‘) but I have no solution for files. Asked By: Kirill Titov || Source Answers: From Geoff Chappell’s The Windows Explorer Command Line import subprocess …

Total answers: 10