“Python Sprawdź, czy folder jest pusty” Kod odpowiedzi

Python Sprawdź, czy folder jest pusty

import glob
if not glob.glob(f"/path/to/dir/*"):
	print("Dir is empty")
Benja

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 Sprawdź, czy folder jest pusty”

Pytania podobne do “Python Sprawdź, czy folder jest pusty”

Więcej pokrewnych odpowiedzi na “Python Sprawdź, czy folder jest pusty” w Python

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

Przeglądaj inne języki kodu