By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now![C:\Windows\system32]dedupe /S /D /V /SHA512 "C:\Z_YahooGoogleData\Facebook New" "C:\Z_YahooGoogleData\Facebook Old"
C:\Z_YahooGoogleData\Facebook Old\"C:\Z_YahooGoogleData\Facebook New"
Total files: 0 Unique: 0 Duplicates: 0
dedupe /S /D /V /SHA512 * "C:\Z_YahooGoogleData\Facebook New" "C:\Z_YahooGoogleData\Facebook Old"
text
C:\> [0] dir1 dir2
if not %@right[1,%dir1] == "\" set dir1=%dir1%\
if not %@right[1,%dir2] == "\" set dir2=%dir2%\
for /r %fn1 in (dir1\*) (
echos Processing [%fn1]...
set fn2=%@replace[%dir1,%dir2,%fn1]
if isfile "%fn2"
:: %%@compare[] == 1 then same, else different
if %@compare["%fn1","%fn2"] eq 1
echo (same)
del /q "%fn2"
else
echo (diff)
endiff
else
echo (n/e)
endiff
)
endtext