In this answer https://askubuntu.com/a/216889/50183 I found a command to list all files, filled with zeros:
find -type f -printf "%S\t%p\n" 2>/dev/null | awk '{if ($1 < 1.0) print $1 $2}'
unfortunately, it can't capture filenames and pathes with spaces.
How to improve?