I\'ve a directory with many number of 0 byte files in it. I can\'t even see the files when I use the ls command. I\'m using a small script to delete these files but sometime
If you want to find and remove all 0-byte files in a folder:
find /path/to/folder -size 0 -delete