I have batch files to verify both WavPack and FLAC files (well, I just created the FLAC one for you ).
http://synthetic-soul.co.uk/files/wv-verify.bat
http://synthetic-soul.co.uk/files/flac-verify.bat
Save the files to your desktop and drop the folder that contains all your files onto the icon. It will verify the files using the native verification switches (WVUNPACK -vm file.wv and FLAC -t file.wv) and report any files that fail at the end.
Oh yeah, you may also need to amend the path to the executables near the top of each file, unless they are in the same folder as the batch files or in your PATH. If flac.exe/wvunpack.exe is in the same folder as the batch file (or visa-versa) you can use (for ease, or portability):
SET pathToFlac="%~dp0flac.exe"
SET pathToWvUnpack="%~dp0wvunpack.exe"
The benefit of the batch files is that they store the paths of the files that fail and then report them at the end. If you just ran a command at the command line you would lose the output after a few files.
FYI, here's the output from the quick test I ran:
Checking: "C:\Documents and Settings\npopham\Desktop\flac-verify"
Verifying: "C:\Documents and Settings\npopham\Desktop\flac-verify\test.flac"
________________________________________________________________________
flac 1.1.2, Copyright © 2000,2001,2002,2003,2004,2005 Josh Coalson
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. Type `flac' for details.
test.flac: ok
Verifying: "C:\Documents and Settings\npopham\Desktop\flac-verify\test2.flac"
________________________________________________________________________
flac 1.1.2, Copyright © 2000,2001,2002,2003,2004,2005 Josh Coalson
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. Type `flac' for details.
test2.flac: ok
Verifying: "C:\Documents and Settings\npopham\Desktop\flac-verify\test3.flac"
________________________________________________________________________
flac 1.1.2, Copyright © 2000,2001,2002,2003,2004,2005 Josh Coalson
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. Type `flac' for details.
test3.flac: *** Got error code 0:FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC
test3.flac: *** Got error code 2:FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MIS
MATCH
test3.flac: ERROR while decoding data
state = FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC
File failed verification [ERR#1]...
Verifying: "C:\Documents and Settings\npopham\Desktop\flac-verify\test4.flac"
________________________________________________________________________
flac 1.1.2, Copyright © 2000,2001,2002,2003,2004,2005 Josh Coalson
flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you are
welcome to redistribute it under certain conditions. Type `flac' for details.
test4.flac: ok
4 file(s) verified.
1 file(s) returned an error.
Files that failed verification:
"C:\Documents and Settings\npopham\Desktop\flac-verify\test3.flac"
Press any key to exit