“Python Delete Directory, даже если не пуст” Ответ

Python Удалить каталог не пуст

import shutil

shutil.rmtree('/folder_name')
Energetic Emu

Python Удалить каталог не пуст

import shutil

shutil.rmtree('/folder_name')
shutil.rmtree('/folder_name', ignore_errors=True)  # for read only files
Experimental Hypothesis

пустой каталог, если не пустой питон

'''
    Check if a Directory is empty : Method 1
'''    
if len(os.listdir('/home/varun/temp') ) == 0:
    print("Directory is empty")
else:    
    print("Directory is not empty")
Real Raccoon

Python Delete Directory, даже если не пуст

# Delete everything reachable from the directory named in 'top',
# assuming there are no symbolic links.
# CAUTION:  This is dangerous!  For example, if top == '/', it
# could delete all your disk files.
import os
for root, dirs, files in os.walk(top, topdown=False):
    for name in files:
        os.remove(os.path.join(root, name))
    for name in dirs:
        os.rmdir(os.path.join(root, name))
HotFlow

Ответы похожие на “Python Delete Directory, даже если не пуст”

Вопросы похожие на “Python Delete Directory, даже если не пуст”

Больше похожих ответов на “Python Delete Directory, даже если не пуст” по Python

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

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