如何獲得Windows窗體應用程序的路徑,我用的波紋管代碼,但它是說像「未找到方法」如何獲得在Windows應用程序的物理路徑表單應用程序
Application.ExecutablePath;
Application.StartupPath;
請建議我是我缺少任何命名空間?
在此先感謝
如何獲得Windows窗體應用程序的路徑,我用的波紋管代碼,但它是說像「未找到方法」如何獲得在Windows應用程序的物理路徑表單應用程序
Application.ExecutablePath;
Application.StartupPath;
請建議我是我缺少任何命名空間?
在此先感謝
這將完整的路徑返回到應用程序
System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location)
添加引用System.Windows.Forms
,並添加使用部分
using System.Windows.Forms;
一般來說,Application.StartupPath()
會給路徑應用程序。而且你也缺少這個名字空間。 System.Windows.Forms
System.Windows.Forms.Application.StartupPath
必須返回正在運行的可執行文件的路徑。
你能做到這樣也
System.AppDomain.CurrentDomain.BaseDirectory