//获取前进程完整路径包含文件名(进程名)
string str = this.GetType().Assembly.Location;
result: X:\xxx\xxx\xxx.exe (.exe文件所目录+.exe文件名)
//获取新 Process 组件并其与前进程关联主模块完整路径包含文件名(进程名)
string str = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
result: X:\xxx\xxx\xxx.exe (.exe文件所目录+.exe文件名)
//获取设置前目录(即该进程启目录)完全限定路径
string str = System.Environment.CurrentDirectory;
result: X:\xxx\xxx (.exe文件所目录)
//获取前 Thread 前应用程序域基目录由程序集冲突解决程序用探测程序集
string str = System.AppDomain.CurrentDomain.BaseDirectory;
result: X:\xxx\xxx\ (.exe文件所目录+"\")
//获取设置包含该应用程序目录名称(推荐)
string str = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
result: X:\xxx\xxx\ (.exe文件所目录+"\")
//获取启应用程序执行文件路径包括执行文件名称
string str = System.Windows.Forms.Application.StartupPath;
result: X:\xxx\xxx (.exe文件所目录)
//获取启应用程序执行文件路径包括执行文件名称
string str = System.Windows.Forms.Application.ExecutablePath;
result: X:\xxx\xxx\xxx.exe (.exe文件所目录+.exe文件名)
//获取应用程序前工作目录(靠)
string str = System.IO.Directory.GetCurrentDirectory();
result: X:\xxx\xxx (.exe文件所目录)
可以装vs2008速成版。安装文件也是2个g左右,但不怎么占空间