Hi,
I am new to Beyond Compare, and required some assistance with running folder compares via Command Line.
I currently have the following contents in a BAT script:
However, I get a 'FAILED' response even though I am sure the contents of the folders are the same (done a compare via the BC GUI).
Is my script really doing a comparision?
Any help will be much appreciated. Thanks!
I am new to Beyond Compare, and required some assistance with running folder compares via Command Line.
I currently have the following contents in a BAT script:
Code:
@echo off "C:\Program Files\Beyond Compare 3\BComp.exe" /qc=crc "C:\TEST\TEST1" "C:\TEST\TEST2" set return=%errorlevel% IF %return% == 1 ( ECHO CRC MATCH - PASS ) else ( echo FAILED binary match )
Is my script really doing a comparision?
Any help will be much appreciated. Thanks!
Comment