Delete Unwanted Files
This example shows how to get rid of directories named @eaDir.
find /volume1 -type d -name @eaDir -delete
Delete Empty Directories
Another example that allows you to delete all the empty directories contained in the current directory.
find . -depth -type d -empty -delete