Tagged Questions
The filecompare tag has no wiki summary.
3
votes
4answers
963 views
Comparing folder structure in two environments
Are there any good tools for comparing two folder structures (files included) between two environments?
i.e. comparing a dev computer with production
Edit:
A note on some lessons learned: dir /s ...
2
votes
3answers
268 views
detecting if two files are strictly identical, what to compare?
I'd like to know how to compare two files to determine if it is exactly the same one.
I know how to compare filename, date of creation/modification and even hash if required.
However I don't know how ...
1
vote
1answer
79 views
Compare GACs from two servers?
I need a easy and trusted way to compare GAC (Global Assembly Cache) from two servers, during BizTalk migration. I also want to move the GAC from QA to Production if it doesn't exist in the ...
1
vote
5answers
249 views
Decompiling java class files and comparing with svn
We have normal java files residing in the SVN. We have made some changes in those files , but it happens that , those files are lost (they are not in SVN). But we have the class files that are ...
1
vote
4answers
485 views
Tool for 3-Way Binary (Hex) File Comparison?
I have a set of binary configuration files with three versions each -- an original, and two differently-modified versions of each file. I need to be able to see the differences between the two ...
1
vote
1answer
350 views
How to compare two file structures in PHP?
I have a function which gives me the complete file structure upto n-level,
function getDirectory($path = '.', $ignore = '') {
$dirTree = array ();
$dirTreeTemp = array ();
$ignore[] = ...
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
1
vote
3answers
188 views
Free/OpenSource .NET Diff generator?
I'm looking for a free library that can take two strings and produce a diff much like the diff's you see on edit revisions here on SO.
I'm hoping one exists, as this is a trivial part of an app I'm ...
0
votes
3answers
126 views
Implement recursive hashing algorithm
let's say file A has the bytes:
2
5
8
0
33
90
1
3
200
201
23
12
55
and I have a simple hashing algorithm where I store the sum of the last three consecutive bytes so:
2
5
8 - = 8+5+2 = 15
...
0
votes
1answer
34 views
Tool for comparing 2 binary files in Windows
I need a tool for comparing 2 binary files. The files are quite big. Some freeware or trial tools I found on internet are not convenient to use for big files. Can you recommend me any tools?
0
votes
3answers
152 views
Can we compare two javascript files using C#?
Can any one Tel me how to Compare the two java script files using C#?I have tried comparing the two text files.But if the first file and second file has same data only a space is extra in Second ...
0
votes
1answer
227 views
What exactly does a non-shallow filecmp.cmp do?
I'm using Python 2.6.2. The docs for the filecmp module say:
The filecmp module defines functions to compare files and directories, with various optional time/correctness trade-offs.
and, of the ...
0
votes
3answers
3k views
How to compare two files in shell script?
Here is my scenario.
I have two files which are having records with each record's 3-25 characters is an identifier. Based on this I need to compare both of them and update the old file with the new ...