“Cómo abrir la carpeta en Python” Código de respuesta

carpeta de Python Open

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

Abra el archivo en el directorio de Python

path = 'C:\\Users\\Username\\Path\\To\\File'
file=open(path, "r")
Filthy Falcon

Cómo abrir la carpeta en Python

import webbrowser

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

Cómo abrir la carpeta en Python

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

#I am going to find a way to make it so that if you code into the thing, then it will open a file you want
Curious Cheetah

Respuestas similares a “Cómo abrir la carpeta en Python”

Preguntas similares a “Cómo abrir la carpeta en Python”

Más respuestas relacionadas con “Cómo abrir la carpeta en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código