TECHIES WORLD

For Techs.... Techniques.... Technologies....

LinuxPython

Remove empty folder in Python

Os module provides the function to remove folder if its empty.

import os
os.rmdir(folder)

Where 'folder' is the name of the folder that need to be removed.

Leave a Reply