Locate empty folders within a folder

Here is a terminal command

find . -type d -empty

And if you want to delete these files :

find . -type d -empty -delete