“Python löschen Verzeichnis, falls vorhanden” Code-Antworten

Python -DLETE -Ordner

import shutil

shutil.rmtree('/folder_name')
Energetic Emu

Python löschen Verzeichnis, falls vorhanden

import os
import shutil

dirpath = os.path.join('dataset3', 'dataset')
if os.path.exists(dirpath) and os.path.isdir(dirpath):
    shutil.rmtree(dirpath)
Cruel Chinchilla

Verzeichnis löschen, wenn Python existiert

os.remove() is to remove a file.

os.rmdir() is to remove an empty directory.

shutil.rmtree() is to delete a directory and all its contents.
	shutil.rmtree(dirpath)
coder

Ähnliche Antworten wie “Python löschen Verzeichnis, falls vorhanden”

Fragen ähnlich wie “Python löschen Verzeichnis, falls vorhanden”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen