Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

File comparison utility

Tags:

c#

.net

windows

I am looking for compare utility similar for "win merge" or "beyond compare" . That in addition for gui comparison will have api that i will be able to run on my files via my code and see if the files are the same or not and also use it in gui mode to show graphically the differences .

Any recommendations ?

thanks

like image 967
Night Walker Avatar asked Mar 14 '10 15:03

Night Walker


3 Answers

If you're looking for a Diff API (as opposed to a standalone tool), try DiffPlex.

like image 124
Aaronaught Avatar answered Sep 28 '22 19:09

Aaronaught


Kdiff might do what you need. Kdiff command line

like image 42
ScottCam Avatar answered Sep 28 '22 17:09

ScottCam


Check out Araxis Merge - it's a two-way or three-way diff utility, it can handle ANSI, ASCII and Unicode files (it can even compare an ANSI file to a Unicode file!), and it offers both a command-line interface, as well as an automation API for including its smarts into your own apps.

Highly recommended!

like image 37
marc_s Avatar answered Sep 28 '22 18:09

marc_s