Copying files folder to files_copy folder, one wants to check the files were copied correctly. Fciv.exe permits to make an xml database of the original files and then compare it to the copied destination:
Taking an xml database recursively for the original folder:
fciv.exe -add C:\files -wp -xml C:\hashDB.xml -r
works fine, all files listed.
But when one tries to verify the contents of the copied directory against the xml DB of the original location, there is apparently no way to insert the -r switch so the destination gets checked recursively. I've tried with all the combinations, base sample here:
C:\files_copy>fciv -v -xml C:\hashDB.xml -r
If used without the -r switch, the output will always be successful and report no files modified (not true). How to recursively check the destination with fciv? Is is possible?