Python Open Dossier
import subprocess
subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"')
JoohannLULW
import subprocess
subprocess.Popen(r'explorer /select,"C:\path\of\folder\file"')
path = 'C:\\Users\\Username\\Path\\To\\File'
file=open(path, "r")
import webbrowser
path = "C:/Users/Username/PycharmProjects"
webbrowser.open(path) # Opens 'PycharmProjects' folder.
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