if not os.listdir('/home/varun/temp') :
print("Directory /home/varun/temp is empty")
'''
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")
import glob
if not glob.glob(f"/path/to/dir/*"):
print("Dir is empty")