“Python Usuń folder i zawartość” Kod odpowiedzi

Plik usuwa Python

import os
import shutil

if os.path.exists("demofile.txt"):
  os.remove("demofile.txt") # one file at a time

os.rmdir("test_directory") # removes empty directory
shutil.rmtree("test_directory") # removes not empty directory and its content
Charming Crab

Folder Python Dlete

import shutil

shutil.rmtree('/folder_name')
Energetic Emu

Usuń zawartość Pythona z katalogu

import os
import glob

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

Jak usunąć plik lub folder w Pythonie?

os.remove() removes a file.

os.rmdir() removes an empty directory.

shutil.rmtree() deletes a directory and all its contents.
thecodeteacher

Python Usuń folder i zawartość

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

Python Jak usunąć katalog z plikami

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

Odpowiedzi podobne do “Python Usuń folder i zawartość”

Pytania podobne do “Python Usuń folder i zawartość”

Więcej pokrewnych odpowiedzi na “Python Usuń folder i zawartość” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu