If you're both using the same naming scheme, then any "find duplicate
files" utility will work.
If you're looking for duplicate named folders, then IMHO the easiest
thing is to run something like this
Code:
--------------------
for /R %%D in (.) do for %%E in (mp3 flac ape) do if exist %%D\*.%%E echo
%%~nxD
--------------------
for each directory tree, merge outputs, sort and use an editor to spot
duplicate names. If your editor supports regular expressions (and you
understand those) it's pretty trivial...
--
bobkoure
------------------------------------------------------------------------
bobkoure's Profile: http://forums.slimdevices.com/member.php?userid=14646
View this thread: http://forums.slimdevices.com/showthread.php?t=43672
_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/ripping