0

2つのファイルが類似しているかどうかを確認する機能があります。だから私がしたことの1つは、ファイルのサイズを比較することです。ファイルの内容を比較して一致率を取得する方法を探しています。パーセンテージ値に応じて、それらがほぼ等しいかどうかを判断できますか?

テキストファイルの場合は、テキストを読み込んで差分を計算しています。しかし、それがそのような画像を含むExcelまたはその他のファイルである場合はどうなりますか??

4

1 に答える 1

0

このようなことを試してから、2 つのファイルの比較に基づいて決定を下すことができます。

Imports System.IO

Public Class FileSizeChecker

Public Sub FileChecker()

    Dim info As New FileInfo("test.txt")

    ' Get length of the file.
    Dim length As Long = info.Length

    ' Add more characters to the file.
    File.AppendAllText("test.txt", " More characters.")

    ' Get another file info.
    ' ... Then get the length.
    Dim info2 As New FileInfo("test.txt")
    Dim length2 As Long = info2.Length

    ' Show how the size changed.
    Console.WriteLine("Before and after: {0}, {1}", length, length2)
    Console.WriteLine("Size increase: {0}", length2 - length)

End Sub
于 2013-08-23T15:57:48.693 に答える