“Python -Ordner löschen” Code-Antworten

OS entfernen Sie den gesamten Ordner Python

import os
import shutil

os.remove('/your/path/to/file.txt') #removes a file.

os.rmdir('/your/folder/path/') #removes an empty directory.

shutil.rmtree('/your/folder/path/') #deletes a directory and all its contents.
Magnificent Moth

Python -Ordner löschen

import shutil

shutil.rmtree('/folder_name')
Energetic Emu

Inhalt des Verzeichnisses Python löschen

import os
import glob

files = glob.glob('/YOUR/PATH/*')
for f in files:
    os.remove(f)
oskarzyg

Python löschen Ordner und Inhalt

import shutil
shutil.rmtree("dir-you-want-to-remove")
Embarrassed Echidna

Python, wie man ein Verzeichnis mit darin enthaltenen Dateien löscht

import shutil

dir_path = '/tmp/img'

try:
    shutil.rmtree(dir_path)
except OSError as e:
    print("Error: %s : %s" % (dir_path, e.strerror))
Strange Salmon

Python entfernt Verzeichnis oder Datei

>>> os.listdir()
['new_one', 'old.txt']

>>> os.remove('old.txt')
>>> os.listdir()
['new_one']

>>> os.rmdir('new_one')
>>> os.listdir()
[]
SAMER SAEID

Ähnliche Antworten wie “Python -Ordner löschen”

Fragen ähnlich wie “Python -Ordner löschen”

Weitere verwandte Antworten zu “Python -Ordner löschen” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen