這篇文章帶給大家的內容是關於怎麼判斷兩個文件是否是同一個文件 (程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
透過System.Security.Cryptography.HashAlgorithm 雜湊演算法取得檔案的雜湊值比較判斷
public static bool CompareFile(string filePath1, string filePath2) { //计算第一个文件的哈希值 HashAlgorithm hash = HashAlgorithm.Create(); var stream_1 = new System.IO.FileStream(filePath1, System.IO.FileMode.Open); byte[] hashByte_1 = hash.ComputeHash(stream_1); stream_1.Close(); //计算第二个文件的哈希值 var stream_2 = new System.IO.FileStream(filePath2, System.IO.FileMode.Open); byte[] hashByte_2 = hash.ComputeHash(stream_2); stream_2.Close(); return BitConverter.ToString(hashByte_1) == BitConverter.ToString(hashByte_2); }## 以上就是對怎麼判斷兩個檔案是否是同一個檔案(程式碼)的全部介紹,如果您想了解更多有關
以上是怎麼判斷兩個檔案是否是同一個檔案 (代碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!