如何使用Inno Setup脚本来编辑文本文件?

时间:2010-04-01 14:03:23

标签: append text-files inno-setup

如何将文字附加到文件?

2 个答案:

答案 0 :(得分:6)

您可以使用SaveStringToFile()功能将文字附加到文件中。

答案 1 :(得分:1)

fileName := ExpandConstant('{pf}\{#MyAppName}\batch.bat');
  SetArrayLength(lines, 3);
  lines[0] := 'echo hello';
  lines[1] := 'pause';
  lines[2] := 'exit';
  Result := SaveStringsToFile(filename,lines,true);