Tagged Questions
The file-comparison tag has no wiki summary.
10
votes
4answers
664 views
Programmatical approach in Java for file comparison
What would be the best approach to compare two hexadecimal file signatures against each other for similarities.
More specifically, what I would like to do is to take the hexadecimal representation ...
7
votes
3answers
274 views
How can I know if an “assembly” really did change?
I created a simple "Hello World" application in VS2005. It's a straight-forward console application; it only contains the following lines:
Console.WriteLine("Hello World");
Console.ReadLine();
When ...
4
votes
4answers
577 views
Reliable way to (programmatically) compare PDFs?
I am in the classic scenario where the business gives you a bunch of new pdf forms for the new year with no revision notes whatsoever and you are supposed to figure out what's different from the ...
2
votes
1answer
116 views
.NET Library for merging files
Do You know any .net library that can be used for comparing and especially merging of two files (like .pst) - would be the best if open-source or inexpensive.
1
vote
1answer
52 views
Backup dirs and subdirs using Python; Use os.walk or filecmp.dircmp, or something else
I am a python newbie.
My question is what approach I should use to set up a file/directory backup routine, as described below (os.walk or filecmp.dircmp, or something else).
I want to set up a ...
1
vote
1answer
102 views
How do I compare two files in Ruby 1.9?
In Ruby 1.8, I would call File.compare() from the "ftools" library to easily compare the contents of two files.
However, in Ruby 1.9, "ftools" is replaced by "fileutils", which doesn't have a ...
1
vote
2answers
103 views
Comparing two .txt files in Python and saving exact and similar matches to .txt file
What i need is:
text_file_1.txt:
apple
orange
ice
icecream
text_file_2.txt:
apple
pear
ice
When i use "set", output will be:
apple
ice
("equivalent of re.match")
but I want to get:
apple
ice
...
1
vote
2answers
175 views
XSLT: XPath comparison between two files
I would like to compare two XML-files via XSLT. The comparison should be considered to be successful if all elements of a specific type in document 1 are located at the same XPath position in document ...
1
vote
4answers
188 views
Existing solution for file deltas/versioning in Java
When versioning or optimizing file backups one idea is to use only the delta or data that has been modified.
This sounds like a simple idea at first but actually determining where unmodified data ...
1
vote
1answer
380 views
NSFileManager contentsEqualAtPath:andPath: compare checksum data
Does the NSFileManager method contentsEqualAtPath:andPath: create a dynamic checksum to compare two files, does it open the file header and compare file header details or does it use some other method ...
1
vote
4answers
462 views
C# file comparison utility
Can you recommend a good file comparison utility that is able to handle C# very well. I have tried both WinMerge, BeyondCompare and KDiff and they are not good enough, e.g. if I have functions with ...
1
vote
5answers
2k views
Eclipse (3.5) how to compare files horizontally?
Normally Eclipse 'File Compare' compares files in vertical panels like:
Is there a way I can compare them horizontally like:
Its too tiring to scroll everytime to see what was changed!!
Thx
0
votes
0answers
13 views
GUI XML Comparison tool that parses the XML before diffing for Linux
I am looking for a XML comparison tool that will parse the XML before diffing for Linux (RHEL 5.7, Gnome). The files that I am diffing are 99% different in a line comparison but 85% the same after ...
0
votes
1answer
91 views
file comparison in fitnesse using java
I need to compare 2 csv files and output the results to a new file in Fitnesse using java. Please throw some light on this as I am newbie to Fitnesse. I am confused about what fixtures are to be used.
...
0
votes
1answer
52 views
Comparing n number of files (binary)
I want to compare a number of files and find out which files which are the same, but they are not necessarily text files(So please don't suggest diff)
The files can be in any format (ie binary ...
0
votes
5answers
96 views
Is it a good idea to use svn and check diff in command line in Mac OSX?
I used to use svn with TortoiseSVN in Windows.
And I always compared every file I modified to the old ones with WinMerge after every time I modified them.
But I couldn't find a svn client like ...
0
votes
0answers
20 views
I want to compare two versions of WinHelp (.hlp) files
I have two versions of WinHelp (.hlp) files. I want to compare them in detail to see where the difference is.
Manually opening and reading is next to impossible since there are practically a large ...
0
votes
1answer
286 views
problem with output of side difference using sdiff in unix
I am using the following sdiff command to get the side-by-side difference of two files. Column width is given as one of the options
sdiff -w170 /tmp/captureFile /tmp/referenceFile (or diff -y )
if ...