views:

54

answers:

4

Hi, I have two folders with sub folders. One folder is base folder other one is local folder These folders & subfolders consist identical as well as non identical files. I want compare these folders and report the result in some other file This report must consist of 1. List of All identical files 2. List of All modified files 3. List of Any missing file or folder 4. List of All non identical file

Please suggest me any tool ,batch script , any utility

I have tried winmerge but its not the solution

Thanks

+2  A: 

BeyondCompare is what you're looking for. It will give you all those reports in a matter of clicks.

UPDATE

As a follow up to your comment, you can also use this approach, which is as free as in beer, and does everything via command line.

Install a tool called diff tools, and you'll be able to do something like:

diff.exe On the command line.

Marcos Placona
yeah but its licensed one any freeware in substitution of Beyond CompareIs there any batch script we can write for this problem
WENzER
Updated my post with another free option
Marcos Placona
@WENzER - didn't you ask about batch scripts previously? http://stackoverflow.com/questions/2415678/comparing-folders-and-subfolders-files-using-batch-command And in this current question you explicitly state that you want to know about any utility?
Mike Two
A: 

I have to recommend Beyond Compare for this, it's an excellent folder and file comparison tool. You can integrate it into Visual Studio as well for the file comaprison for a much better merging experience as well.

Nick Craver
+1  A: 

Araxis Merge is very good for this. I comes in a 64 bit version as well.

Mike Two
A: 

you can use Windiff.

ghostdog74