I also had the same problem and theccap10 solution worked thanks!
You just have to delete all those 0 bytes files.
an ez code to do that:
find . -type f -size 0b -print
find . -type f -size 0b -delete
first you can see all the files after you delete them.