To create a text file with checksums:
find <folder-to-check> -type f -print0 | xargs -0 md5sum >> output-checksum.md5
To verify a folder using the file
md5sum --quiet -c /path/to/output-checksum.md5 > checksum_errors.txt