1、获取应用程序(解决方案所在目录)的当前工作目录
string rstValue=System.AppDomain.CurrentDomain.BaseDirectory;//获取应用程序的当前工作目录
例如:当前解决方案下网站目录E:\KnowledgeBase\KnowledgeBase\KnowledgeBase
返回值rstValue为:E:\KnowledgeBase\KnowledgeBase\KnowledgeBase
2、获取应用程序(visual studio)的当前工作目录
string rstValue= System.IO.Directory.GetCurrentDirectory();
string rstValue= Environment.CurrentDirectory;// 获取应用程序的当前工作目录
例如:visual studio安装目录E:\vs2008
返回值rstValue为visual studio安装目录+visual studio的exe程序路径:E:\\vs2008\\Common7\\IDE