Answers for "python check if folder is empty and delete"

12

python remove directory not empty

import shutil

shutil.rmtree('/folder_name')
Posted by: Guest on June-12-2020
2

python remove empty folders

import os
def drop_empty_folders(directory):
    """Verify that every empty folder removed in local storage."""

    for dirpath, dirnames, filenames in os.walk(directory, topdown=False):
        if not dirnames and not filenames:
            os.rmdir(dirpath)
Posted by: Guest on June-24-2020
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 "python check if folder is empty and delete"

Python Answers by Framework

Browse Popular Code Answers by Language