“Python удалить папку” Ответ

ОС удалить всю папку 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 удалить папку

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

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 удаляет каталог или файл

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

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

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

Ответы похожие на “Python удалить папку”

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

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

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

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