view content/Coding/023-finding-empty-dirs.rst @ 7:49bebfa6f9d3

Added summary lines for those posts that had back to back headings. Those posts didn't look so great on Pelican's index.
author Brian Neal <bgneal@gmail.com>
date Fri, 31 Jan 2014 20:32:36 -0600
parents 7ce6393e6d30
children
line wrap: on
line source
Finding empty directories in Python
###################################

:date: 2013-05-26 16:00
:tags: Python
:slug: finding-empty-directories-in-python
:author: Brian Neal

Late one night I needed to write some Python code to recursively find empty
directories. Searching online produced some unsatisfactory solutions. Here is
a simple solution that leverages `os.walk`_.

.. sourcecode:: python

   import os

   empty_dirs = []
   for root, dirs, files in os.walk(starting_path):
      if not len(dirs) and not len(files):
          empty_dirs.append(root)

If you then wish to delete these empty directories:

.. sourcecode:: python

   for path in empty_dirs:
       os.removedirs(path)

.. _os.walk: http://docs.python.org/2/library/os.html#os.walk