“python créer un nouveau dossier s'il n'existe pas” Réponses codées

python créer un nouveau dossier s'il n'existe pas

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

Python faire un répertoire s'il n'y a pas

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

Créer un répertoire Python s'il n'est pas existé

#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 Créer un nouveau dossier dans le chemin qui n'existe pas

def newfolder(path):
    import os
    try:
        os.mkdir(path)
    except:
        newfolder(path[:path.rindex("/")])
        newfolder(path)
Frail Frog

Réponses similaires à “python créer un nouveau dossier s'il n'existe pas”

Questions similaires à “python créer un nouveau dossier s'il n'existe pas”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code