在安装过程中,我需要将一些文件从文件夹复制到另一个文件,我怎么能确定这个复制过程是否成功?
FileCopy(ExpandConstant('{src}\copy.txt'), ExpandConstant('{app}\test_success.txt'), false);
是否有可能在安装过程中记录复制过程。
SetupLogging
未提供有关安装期间复制过程的任何信息
提前谢谢
答案 0 :(得分:1)
使用Log
function:
function FileCopyLogged(const ExistingFile, NewFile: String; const FailIfExists: Boolean): Boolean;
begin
Result := FileCopy(ExistingFile, NewFile, FailIfExists);
if Result then
begin
Log(Format('Copying %s to %s succeeded', [ExistingFile, NewFile]));
end
else
begin
Log(Format('Copying %s to %s failed', [ExistingFile, NewFile]));
end;
end;
使用FileCopyLogged
与使用FileCopy
的方式相同:
FileCopyLogged(ExpandConstant('{src}\copy.txt'), ExpandConstant('{app}\test_success.txt'), false);