I have a program written in .net 2.0 and I need to compare two text files. I've tried the following code
Dim fileA As String
Dim fileB As String
Dim fileypath As String = (Environment.GetEnvironmentVariable("APPDATA") & "\ARLS\")
Dim sReaderA As New IO.StreamReader(New IO.FileStream(fileypath & "orig.dat", IO.FileMode.Open))
Dim sReaderB As New IO.StreamReader(New IO.FileStream(fileypath & "comp.dat", IO.FileMode.Open))
fileA = sReaderA.ReadToEnd
fileB = sReaderB.ReadToEnd
sReaderA.Close()
sReaderB.Close()
If fileA.CompareTo(fileB) = -1 Then
MessageBox.Show(fileB.Replace(fileA, "")) '/// show the words in fileB which differ from fileA.
End If
If fileB.CompareTo(fileA) = -1 Then
MessageBox.Show(fileA.Replace(fileB, "")) '/// show the words in fileB which differ from fileB.
End If
And it works except that it will only show if something is added to the end of the line. If anything is added or deleted in the middle, it will show the entire text file.
Any ideas.
<--EDIT-->
So I got it working by creating two list boxes, dumping the text files into each then comparing the list boxes with the following code. For i As Integer = 0 To ListBox2.Items.Count - 1
If ListBox1.Items.Contains(ListBox2.Items(i)) Then
Else
LogPrint(ListBox2.Items(i))
End If
Next
For i As Integer = 0 To ListBox1.Items.Count - 1
If ListBox2.Items.Contains(ListBox1.Items(i)) Then
Else
LogPrint(ListBox1.Items(i))
End If
Next
ListBox2.Items.Clear()
ListBox1.Items.Clear()
This gives me the differences but that seems like a long way arround. Anyone know if there is a better way to do it without using listboxes?