CompareFiles – Comparing two binary/text files

CompareFiles – Comparing two binary/text files

' Returns a boolean indicating whether two files are equal' Example: Debug.WriteLine(CompareFiles("D:File1.mdb", "D:File2.mdb"))Function CompareFiles(ByVal path1 As String, ByVal path2 As String) As Boolean    Dim file1 As New System.IO.FileInfo(path1)    Dim file2 As New System.IO.FileInfo(path2)    Dim stream1, stream2 As System.IO.FileStream    ' if the length of the 2 files is different, return False    If file1.Length <> file2.Length Then Return False    Try        ' open the two files in read mode        stream1 = file1.OpenRead()        stream2 = file2.OpenRead()        Dim i As Integer        ' check whether all bytes are equal        For i = 0 To stream1.Length            If stream1.ReadByte() <> stream2.ReadByte Then                Return False            End If        Next        ' if not already exited at this point, the two files are equal        Return True    Catch e As Exception        Return False    Finally        ' be sure to close the file before exiting the function        If Not stream1 Is Nothing Then stream1.Close()        If Not stream2 Is Nothing Then stream2.Close()    End TryEnd Function

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes