通知
すべてクリア
Topic starter
2006年1月17日 9:46 PM
実行しているプログラムのパスを取得するには
どうしたらよいでしょう?
メソッド一発で取れたと思うのですが。
環境:VisualStudio2005
2006年1月17日 10:10 PM
Assembly.GetExecutingAssembly.Location かな。
2006年1月17日 10:22 PM
System.Reflection.Assembly.GetEntryAssembly().Locationかも。
……System.Windows.Forms.Application.ExecutablePathだったりして。
Topic starter
2006年1月19日 10:04 PM
欲しい文字列(パスまで)は
Application.StartupPathで取得することができました。
System.Reflection.Assembly.GetExecutingAssembly().Location
System.Reflection.Assembly.GetEntryAssembly().Location
System.Windows.Forms.Application.ExecutablePath
ちなみに教えていただいた上記は全て同じ値が取得できました。
こちらは、パス+実行ファイル名みたいです。