C#获取本执行程序所在的当前路径的方法
2009-04-15 08:24:50 来源:WEB开发网1.获取和设置当前目录的完全限定路径。
string str = System.Environment.CurrentDirectory;
Result: C:xxxxxx
2.获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。
string str = System.Windows.Forms.Application.StartupPath;
Result: C:xxxxxx
3.获取新的 Process 组件并将其与当前活动的进程关联的主模块的完整路径,包含文件名。
string str = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
Result: C:xxxxxxxxx.exe
4.获取当前 Thread 的当前应用程序域的基目录,它由程序集冲突解决程序用来探测程序集。
string str = System.AppDomain.CurrentDomain.BaseDirectory;
Result: C:xxxxxx
5.获取应用程序的当前工作目录。
string str = System.IO.Directory.GetCurrentDirectory();
Result: C:xxxxxx
6.获取和设置包含该应用程序的目录的名称。
string str = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
Result: C:xxxxxx
7.获取当前进程的完整路径,包含文件名。
string str = this.GetType().Assembly.Location;
Result: C:xxxxxxxxx.exe
8.获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
string str = System.Windows.Forms.Application.ExecutablePath;
Result: C:xxxxxxxxx.exe
此外,更多见的通过XML文件配置具体的路径来达到合理的规划配置文件的具体存放位置,如WEB中的配置文件中的路径。
- ››程序员 不妨都写一写前端代码
- ››获取Android手机型号,系统版本,App版本号等信息
- ››获取Windows xp系统高权限无需注销用户
- ››获取checkedListBox 选中的项并且移动
- ››获取ios手机的mac地址的函数
- ››执行存储过程ORA-01031: insufficient privileges...
- ››获取Android手机中SD卡内存信息
- ››获取计算机电源或者电池状态
- ››获取免费“高权重外链资源”的三个简单方法
- ››获取JavaScript变量的类型(Finding Out Class Na...
- ››获取JavaScript用户自定义类的类名称
- ››获取Android源代码的方法
更多精彩
赞助商链接