Ejemplo 1: Python comprueba si la ruta no existe
import os
if not os.path.exists('my_folder'):
os.makedirs('my_folder')
Ejemplo 2: directorio de creación de Python
# This requires Python’s OS module
import os
# 'mkdir' creates a directory in current directory.
os.mkdir('tempDir')
# can also be used with a path, if the other folders exist.
os.mkdir('tempDir2/temp2/temp')
# 'makedirs' creates a directory with it's path, if applicable.
os.makedirs('tempDir2/temp2/temp')
Ejemplo 3: Python crea un directorio anidado
from pathlib import Path
Path("/my/directory").mkdir(parents=True, exist_ok=True) #python 3.5 above
Ejemplo 4: directorio make de Python si no existe
try:
os.makedirs("path/to/directory")
except FileExistsError:
# directory already exists
pass
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)