두 파일의 동일 함수 비교
function CompFile(const f1,f2: string): Boolean;
var
ms1,ms2: TMemoryStream;
i,p: Integer;
b1,b2: Byte;
begin
Result := False;
if not (FileExists(f1) and FileExists(f2)) then Exit;
ms1 := TMemoryStream.Create;
ms2 := TMemoryStream.Create;
ms1.LoadFromFile(f1);
ms2.LoadFromFile(f2);
if ms1.Size <> ms2.Size then
begin
ms1.Free;
ms2.Free;
Exit;
end;
Result := True;
Randomize;
for i := 0 to 9 do
begin
p := Random(ms1.Size);
ms1.Position := p;
ms2.Position := p;
ms1.ReadBuffer(b1,1);
ms2.ReadBuffer(b2,1);
if b1 <> b2 then
begin
Result := False;
Break;
end;
end;
ms1.Free;
ms2.Free;
end;
'욕비매'의 지시에 따라 약간 수정한다.그러나 CompareMem을 사용하지 않고 모든 메모리를 비교하면 10번의 표본 추출이 더 빠를 수 있습니다.function CompFile(const f1,f2: string): Boolean;
var
fs1,fs2: TFileStream;
ms: TMemoryStream;
i,p: Integer;
b1,b2: Byte;
begin
Result := False;
if not (FileExists(f1) and FileExists(f2)) then Exit;
fs1 := TFileStream.Create(f1, fmOpenRead);
fs2 := TFileStream.Create(f2, fmOpenRead);
if fs1.Size <> fs2.Size then
begin
fs1.Free;
fs2.Free;
Exit;
end;
Result := True;
Randomize;
for i := 0 to 9 do
begin
p := Random(fs1.Size);
fs1.Position := p;
fs2.Position := p;
fs1.ReadBuffer(b1,1);
fs2.ReadBuffer(b2,1);
if b1 <> b2 then
begin
Result := False;
Break;
end;
end;
fs1.Free;
fs2.Free;
end;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.