C\#두 파일 의 내용 이 같은 지 판단 하 는 방법
해시 코드 를 만 들 려 면 먼저 HashAlgorithm 대상 을 만 들 고 HashAlgorithm.Create 방법 으로 완성 해 야 합 니 다.그리고 호출
해시 코드 를 저장 하 는 바이트 그룹 을 되 돌려 주 고 BitConverter.Tostring()을 사용 합 니 다.
문자열 로 바 꾸 어 비교 합 니 다.
원본 코드 는 다음 과 같 습 니 다.
public static bool isValidFileContent(string filePath1, string filePath2)
{
//
using (HashAlgorithm hash = HashAlgorithm.Create())
{
using (FileStream file1 = new FileStream(filePath1, FileMode.Open),file2=new FileStream(filePath2,FileMode.Open))
{
byte[] hashByte1 = hash.ComputeHash(file1);//
byte[] hashByte2 = hash.ComputeHash(file2);
string str1 = BitConverter.ToString(hashByte1);//
string str2 = BitConverter.ToString(hashByte2);
return (str1==str2);//
}
}
}
이 함수 의 주 함 수 를 사용 합 니 다.
static void Main(string[] args)
{
string filePath1 = @"f:/1.txt";
string filePath2 = @"f:/2.txt";
bool valid=isValidFileContent(filePath1, filePath2);
Console.WriteLine(valid.ToString());
Console.ReadKey();
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
python 3 - 파일 수정 - 셸 의 sed 와 유사 한 기능 구현# Auther: Aaron Fan r, ( )。 w, 。【 ; ; ; , 】 a, 。【 ; ; ;】 :f.close() python 。 , str() 。 #r ( ) f = open('yesterday',enc...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.