Find all zero-byte files in a path

List them:

find . -type f -size 0 -ls
To delete use:
find . -type f -size 0 -delete