“Удалить файлы внутри папки Python” Ответ

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

import os

filelist = [ f for f in os.listdir(mydir) if f.endswith(".bak") ]
for f in filelist:
    os.remove(os.path.join(mydir, f))
TheAssassin

Удалить файлы внутри папки Python

import os
import glob

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

Как удалить файл или папку в 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

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

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