获取位置路径Wix安装

时间:2013-06-17 08:57:46

标签: wix wix3.5 wix3.6 wix3.7

如果我想访问mylocation.txt文件,如何获取位置路径,此文件当前位于E:驱动器中。

[CustomAction]
    public static ActionResult FillList(Session xiSession)
    {

    //Can i get store mylocation.txt into application root instead of E location
        string path = "Mylocation.txt";

        // Open the file to read from. 
        string[] readText = File.ReadAllLines(path);

        foreach (string s in readText)
        {
            //Console.WriteLine(s);
            FillComboBox(xiSession, s, s);
        }
         xiSession["COUNTRIES"] = "--Select Location--";
        return ActionResult.Success;
    }

我可以将商店mylocation.txt存入应用程序根目录而不是E位置。如何调用mylocation.txt?基本上我想要的是在安装过程中从此文本文件中获取combox的值。

1 个答案:

答案 0 :(得分:0)

Mylocation.txt作为资源文件附加到自定义操作项目中。从discussion获取更多详细信息。