Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ブートストラップ内から Setup.exe のパスにアクセスしようとしています。ただし、Assembly.GetExecutingAssembly().Location常に使用すると、実行可能ファイルが解凍されたように見える一時パスが返されます。Setup.exe がそこから開始されたときに、「c:\downloads」を取得するにはどうすればよいですか?
Assembly.GetExecutingAssembly().Location
Application.StartupPath;
これにより、プログラムを開始したexeのパスが得られます。
MSDN