应用VS2010创建了一WinForm项目,项目名为RelativePath,放在桌面上
编写代码通过八种方式获取相对路径并输出显示,运行效果如下:
下面简要的介绍一下这八种获得相对路径的方式:
string str1 = System.Environment.CurrentDirectory; //Result: C:xxxxxx
string str2 = System.Windows.Forms.Application.StartupPath; //Result: C:xxxxxx
string str3 = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; //Result: C:xxxxxxxxx.exe
string str4 = System.AppDomain.CurrentDomain.BaseDirectory; //Result: C:xxxxxx
string str5 = System.IO.Directory.GetCurrentDirectory(); //Result: C:xxxxxx
这个不一定是程序从中启动的目录啊,有可能程序放在C:\xxx里,这个函数有可能返回C:\Documents and Settings\WSY\,或者C:\Program Files\Adobe\,有时不一定返回什么东西,这是任何应用程序最后一次操作过的目录,比如你用Word打开了E:\doc\my.doc这个文件,此时执行这个方法就返回了E:\doc了。
string str6 = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; //Result: C:xxxxxx
string str7 = this.GetType().Assembly.Location; //Result: C:xxxxxxxxx.exe
string str8 = System.Windows.Forms.Application.ExecutablePath; //Result: C:xxxxxxxxx.exe
此外,更多见的通过XML文件配置具体的路径来达到合理的规划配置文件的具体存放位置,如WEB中的配置文件中的路径
string path = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase + @"moduleM3ExampleMuColor.txt"; StreamReader smRead = new StreamReader(path, System.Text.Encoding.Default); //设置路径