“Comment ouvrir un dossier dans Python” Réponses codées

Python Open Dossier

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

ouvrir le fichier dans le répertoire Python

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

Comment ouvrir un dossier dans Python

import webbrowser

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

Comment ouvrir un dossier dans 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

Réponses similaires à “Comment ouvrir un dossier dans Python”

Questions similaires à “Comment ouvrir un dossier dans Python”

Plus de réponses similaires à “Comment ouvrir un dossier dans Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code