“Python Usuń katalog 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

Odpowiedzi podobne do “Python Usuń katalog nie jest pusty”

Pytania podobne do “Python Usuń katalog nie jest pusty”

Więcej pokrewnych odpowiedzi na “Python Usuń katalog nie jest pusty” w Python

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

Przeglądaj inne języki kodu