c#里 怎么获取系统默认安装程序的路径啊?急!!
展开全部
System.Reflection.Assembly curPath = System.Reflection.Assembly.GetExecutingAssembly();
FileInfo info = new FileInfo(curPath.Location);
return info.Directory.FullName;
会返回exe所在文件夹的路径。
FileInfo info = new FileInfo(curPath.Location);
return info.Directory.FullName;
会返回exe所在文件夹的路径。
更多追问追答
追问
我这个要做的是安装啊,就是在选择路径的text里显示系统默认安装路径
追答
RegistryKey Key = Registry.LocalMachine;
RegistryKey ServiceIP = Key.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion", false);
string strServiceIP = ServiceIP.GetValue("ProgramFilesDir").ToString();
我电脑上的运行结果是C:\Program Files (x86)
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |