“Python удалить папку и содержимое” Ответ

Python Delete File

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

Папка Python Dlete

import shutil

shutil.rmtree('/folder_name')
Energetic Emu

Удалить содержимое каталога Python

import os
import glob

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

Как удалить файл или папку в Python?

os.remove() removes a file.

os.rmdir() removes an empty directory.

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

Python удалить папку и содержимое

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

Python, как удалить каталог с файлами в нем

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 удалить папку и содержимое”

Вопросы похожие на “Python удалить папку и содержимое”

Больше похожих ответов на “Python удалить папку и содержимое” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования