mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 07:19:16 +02:00
parent
6f8f3d9e34
commit
1cc8b8d008
@ -143,8 +143,27 @@ end;
|
|||||||
|
|
||||||
Function SimpleFileCopy(Const Source,Dest : String) : Boolean;
|
Function SimpleFileCopy(Const Source,Dest : String) : Boolean;
|
||||||
|
|
||||||
|
Var
|
||||||
|
F1,F2 : TFileStream;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
Result:=True;
|
Result:=False;
|
||||||
|
try
|
||||||
|
F1:=TFileStream.Create(Source,fmOpenRead);
|
||||||
|
try
|
||||||
|
F2:=TFileStream.Create(Dest,fmCreate);
|
||||||
|
try
|
||||||
|
F2.CopyFrom(F1,0);
|
||||||
|
finally
|
||||||
|
F2.Free;
|
||||||
|
end;
|
||||||
|
finally
|
||||||
|
F1.Free;
|
||||||
|
end;
|
||||||
|
Result:=True;
|
||||||
|
except
|
||||||
|
//
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user