Since the -r flag is also being used, rm will nuke subdirectories too. So to get an accurate count of actual FILES to be deleted, one could do this before the rm command:

find . -type f | wc -l

Cheers