“Pusty katalog, jeśli nie pusty Python” Kod odpowiedzi

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 “Pusty katalog, jeśli nie pusty Python”

Pytania podobne do “Pusty katalog, jeśli nie pusty Python”

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

Przeglądaj inne języki kodu