📜  如果不为空,则为空目录 python 代码示例

📅  最后修改于: 2022-03-11 14:47:00.097000             🧑  作者: Mango

代码示例2
'''
    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")