Answers for "check if directory is not empty python"

1

empty directory if not empty 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")
Posted by: Guest on April-30-2021

Code answers related to "check if directory is not empty python"

Python Answers by Framework

Browse Popular Code Answers by Language