“Cómo abrir File Explorer en Python” Código de respuesta

Cómo abrir File Explorer en 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)])
Blue-eyed Beaver

Python Open File de Explorer

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

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

Cómo abrir File Explorer en Python

import easygui
file = easygui.fileopenbox()
Blue-eyed Beaver

Respuestas similares a “Cómo abrir File Explorer en Python”

Preguntas similares a “Cómo abrir File Explorer en Python”

Más respuestas relacionadas con “Cómo abrir File Explorer en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código