“Crear directorio python si no existe” Código de respuesta

Python crea una nueva carpeta si no existe

import os
if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Nice Newt

Python hace directorio si no existe

try:
    os.makedirs("path/to/directory")
except FileExistsError:
    # directory already exists
    pass
Exuberant Earthworm

Crear directorio python si no existe

#From version 3.4, the Python language can natively manage this case.
#The makedirs() function accepts a second parameter, exist_ok.
#By setting the value to true, the method will not throw an exception
# if the directory already exists
os.makedirs(repertoire, exist_ok=True)

#other method
if not os.path.exists(repertoire):
	os.makedirs(repertoire)

#other method

try: 
	os.makedirs(repertoire)
except OSError:
	if not os.path.isdir(repertoire):
		Raise
BlueMoon

Python Pathlib Crear directorio si no existe

pathlib.Path('/tmp/sub1/sub2').mkdir(parents=True, exist_ok=True)
Joyous Jellyfish

Respuestas similares a “Crear directorio python si no existe”

Preguntas similares a “Crear directorio python si no existe”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código