python open folder in explorer code example

Example 1: python open file from explorer

import sys
path = r'C:\Program Files (x86)\IronPython 2.7\Lib'
sys.path.append(path)

import subprocess
subprocess.Popen('explorer "C:\temp"')

Example 2: how to open file explorer in python

import os
import subprocess
FILEBROWSER_PATH = os.path.join(os.getenv('WINDIR'), 'explorer.exe')

def explore(path):
    # explorer would choke on forward slashes
    path = os.path.normpath(path)

    if os.path.isdir(path):
        subprocess.run([FILEBROWSER_PATH, path])
    elif os.path.isfile(path):
        subprocess.run([FILEBROWSER_PATH, '/select,', os.path.normpath(path)])

Example 3: python open folder in explorer

import subprocess
subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"')

Example 4: how to open folder in python

import webbrowser

path = "C:/Users/Username/PycharmProjects"
webbrowser.open(path) # Opens 'PycharmProjects' folder.

Example 5: how to open file explorer in python

import easygui
file = easygui.fileopenbox()

Tags:

Misc Example