Answers for "python open folder in explorer"

4

python open folder in explorer

import subprocess
subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"')
Posted by: Guest on January-15-2021
3

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)])
Posted by: Guest on May-26-2020
0

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"')
Posted by: Guest on July-17-2020
0

how to open folder in python

import webbrowser

path = "C:/Users/Username/PycharmProjects"
webbrowser.open(path) # Opens 'PycharmProjects' folder.
Posted by: Guest on January-05-2021
-1

how to open file explorer in python

import easygui
file = easygui.fileopenbox()
Posted by: Guest on May-26-2020

Code answers related to "python open folder in explorer"

Python Answers by Framework

Browse Popular Code Answers by Language