2011-04-26 44 views

回答

11

這將完整的路徑返回到應用程序

System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location) 
1

添加引用System.Windows.Forms,並添加使用部分

using System.Windows.Forms; 
0

一般來說,Application.StartupPath()會給路徑應用程序。而且你也缺少這個名字空間。 System.Windows.Forms

0

System.Windows.Forms.Application.StartupPath必須返回正在運行的可執行文件的路徑。

5

你能做到這樣也

  System.AppDomain.CurrentDomain.BaseDirectory 
相關問題