0

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 location の代わりにアプリケーション ルートに保存できますか?また、mylocation.txt を呼び出す方法は?

4

1 に答える 1