如何在Inno Setup中记录文件复制过程

时间:2016-01-06 13:19:23

标签: logging installation inno-setup

在安装过程中,我需要将一些文件从文件夹复制到另一个文件,我怎么能确定这个复制过程是否成功?

FileCopy(ExpandConstant('{src}\copy.txt'), ExpandConstant('{app}\test_success.txt'), false);

是否有可能在安装过​​程中记录复制过程。

SetupLogging未提供有关安装期间复制过程的任何信息

提前谢谢

1 个答案:

答案 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);