“Python Delete Directory, nawet jeśli nie jest pusty” Kod odpowiedzi

Python Usuń katalog nie jest pusty

import shutil

shutil.rmtree('/folder_name')
Energetic Emu

Python Usuń katalog nie jest pusty

import shutil

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

Pusty katalog, jeśli nie pusty Python

'''
    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, nawet jeśli nie jest pusty

# 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

Odpowiedzi podobne do “Python Delete Directory, nawet jeśli nie jest pusty”

Pytania podobne do “Python Delete Directory, nawet jeśli nie jest pusty”

Więcej pokrewnych odpowiedzi na “Python Delete Directory, nawet jeśli nie jest pusty” w Python

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

Przeglądaj inne języki kodu