“Python Patlib erstellen Verzeichnis, wenn nicht existiert” Code-Antworten

Python macht ein Verzeichnis, wenn nicht existiert

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

Erstellen Sie das Verzeichnis Python, falls dies nicht existiert

#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 Patlib erstellen Verzeichnis, wenn nicht existiert

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

Ähnliche Antworten wie “Python Patlib erstellen Verzeichnis, wenn nicht existiert”

Fragen ähnlich wie “Python Patlib erstellen Verzeichnis, wenn nicht existiert”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen