using System.Windows.Forms;
控制台程序添加System.Windows.Forms;
因为是控制台应用程序,还要去添加引用
//获取了应用程序路径,不包括可执行文件名称。
- string path1 = Application.StartupPath;
- Console.WriteLine(path1);
- //获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
- string path2 = Application.ExecutablePath;
- Console.WriteLine(path2);
- //substring()用法
- //取得执行文件根目录
- path1 = path1.Substring(0,path1.LastIndexOf("\\"));
- Console.WriteLine(path1);
- Console.ReadLine();