It's certainly not a bade idea to verify the integrity of the copies of your files once moved, but I'll just say that you would need unusually crappy hardware hardware to corrupt a single file out of multiple gigabytes transferred over USB.
It's not like the old days of floppy drives that would corrupt files on brand new high quality disks.
One thing that I did with all of my recordings was to put all of them in individual ZIP files.
It's then a very easy process to test all of them in one fell swoop (assuming you do this with the file folder/directory where all the ZIP files reside and that you're using Windows:
FOR %s IN (*.zip) DO ZIP -t "%s"
Watch the output as ZIP verifies the integrity of each file with the "-t" (test) parameter run in this way.
Of course, you'll need the command line version of the ZIP/UNZIP utilities, but those are easily obtainable for free download all over the place.
You can even introduce a fixed pause of any value in seconds that you prefer (specified in by the numeric value after the "/T" flag below) by making a small CMD batch file that will do that nicely for you that you can use with the below text pasted into a plain text CMD batch file using notepad.
@ECHO OFF
FOR %%s IN (*.zip) DO (
UNZIP -t "%%s"
TIMEOUT /T 10
)
"I don't know; I was really drunk at the time." - Henry McCullough