在 Windows Forms 應用程式,想要取得啟動應用程式的可執行檔路徑可以使用 Application.StartupPath
在 WIndows CE 或者 Windows Mobile 專案中,該如何取得
更多文章,請到我在點部落所建立的部落格「.NET菜鳥自救會」閱讀
http://www.dotblogs.com.tw/chou/
問題描述
在 Windows Forms 應用程式,想要取得啟動應用程式的可執行檔路徑可以使用 Application.StartupPath
在 WIndows CE 或者 Windows Mobile 專案中,該如何取得
方法
透過 Path.GetDirectoryName 方法 : 傳回指定路徑字串的目錄資訊。
VB.NET Code
Label1.Text = System.IO.Path.GetDirectoryName(Reflection.Assembly.GetExecutingAssembly.GetName.CodeBase.ToString)
C# Code
Label1.Text = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase));