“python faça diretório, se não existe” Respostas de código

Python verifique se o caminho não existe

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

Python OS faz diretor se não existir

if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Exuberant Elk

Python Crie diretório aninhado

from pathlib import Path
Path("/my/directory").mkdir(parents=True, exist_ok=True)    #python 3.5 above
Batman

python faça diretório, se não existe

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

Crie python de diretório, se não existir

#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 Criar diretório, se não existe

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

Respostas semelhantes a “python faça diretório, se não existe”

Perguntas semelhantes a “python faça diretório, se não existe”

Procure respostas de código populares por idioma

Procurar outros idiomas de código