我已经提到了this问题,因为我需要在WIX安装期间编辑文件,而不是xml文件。我正在通过wix部署一个网站,我需要根据用户输入在一个文件中进行一些更改。
以下是我的自定义操作
<CustomAction Id="CustomActionID_Data" Property="CustActionId" Value="FileId=[#filBEFEF0F677712D0020C7ED04CB29C3BD];MYPROP=[MYPROP];"/>
<CustomAction Id="CustActionId"
Execute="deferred"
Impersonate="no"
Return="ignore"
BinaryKey="CustomActions.dll"
DllEntry="EditFile" />
及以下是自定义操作中的代码。
string prop= session.CustomActionData["MYPROP"];
string path = session.CustomActionData["FileId"];
StreamReader f = File.OpenText(path);
string data = f.ReadToEnd();
data = Regex.Replace(data, "replacethistext", prop);
File.WriteAllText(path, data); // This throws exception.
由于这是在IISs intetpub文件夹下,我的操作会抛出另一个进程正在使用该文件的错误。任何解决方案?
如果需要知道我的执行顺序,它是在installfiles之后,所以网站尚未启动,但文件被复制。
<InstallExecuteSequence>
<Custom Action="CustomActionID_Data" Before="CustActionId">NOT REMOVE</Custom>
<Custom Action="CustActionId" After="InstallFiles">NOT REMOVE</Custom>
</InstallExecuteSequence>
答案 0 :(得分:0)
好的,我解决了这个问题。这既不是wix问题也不是执行顺序。在上面的代码中,我打开了一个流来阅读文本,并且在阅读之后没有处理它,这就是我的资源。我将代码更改为下面,一切正常。
string data = "";
string prop= session.CustomActionData["MYPROP"];
string path = session.CustomActionData["FileId"];
using(StreamReader f = File.OpenText(path)) // disposed StreamReader properly.
{
data = f.ReadToEnd();
data = Regex.Replace(data, "replacethistext", prop);
}
File.WriteAllText(path, data);