获取执行文件路径的方法
转自:http://www.系统经常要用到系统所在的文件夹,除开放在注册表或数据库中以外,可以通过以下的方式获取。
获取方法见程序:首先在窗体添加一个button和label。label显示结果,在button的click事件中添加下面的代码
string[] path=new string[8];
//5.获取应用程序的当前工作目录。
path[0]=();
//获取当前 Thread 的当前应用程序域的基目录,它由程序集冲突解决程序用来探测程序集。
path[1]=System.AppDomain.CurrentDomain.BaseDirectory;
//获取和设置当前目录的完全限定路径。
path[2]=System.Environment.CurrentDirectory;
//获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。
path[3]=System.Windows.Forms.Application.StartupPath;
//获取新的 Process 组件并将其与当前活动的进程关联的主模块的完整路径,包含文件名。
path[4]=System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
//获取和设置包含该应用程序的目录的名称。
path[5]=System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
//获取当前进程的完整路径,包含文件名
path[6]=this.GetType().Assembly.Location;
//获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
path[7]=System.Windows.Forms.Application.ExecutablePath;
foreach(string str in path )
{
//System.Windows.Forms.MessageBox.Show(str);
label1.Text =label1.Text + str + "\n";
}
运行效果:
参考文章:http://tech.