在使用C#的Windows中,如何从我的项目中获取软件的安装路径(例如,考虑NUnit或任何其他软件,如MS word等)?另外,如何设置我们在环境变量中设置的路径变量,以便我们只需通过命令提示符运行应用程序.
就像我在"C:\ Program Files"中安装NUnit一样,我可以通过在cmd提示符中给出"NUnit"来运行它,但如果我安装在不同的位置,我就不能这样做. 我需要从我的项目中获取NUnit的位置或路径或我系统中安装的任何其他软件(具有Windows XP).
编辑:就像我可以从注册表中获取已安装程序的路径.HKEY_CURRENT_USER-> SOFTWARE
使用系统和应用程序类.这将为您提供各种信息.
EG:Application.ExecutablePath
它还提供了执行您想要的方法.
编辑:另请参阅注册表读/写说明:
http://www.c-sharpcorner.com/UploadFile/sushmita_kumari/RegistryKeys102082006061720AM/RegistryKeys1.aspx?ArticleID=0ce07333-c9ab-4a6a-bc5d-44ea2523e232
string appFileName = Environment.GetCommandLineArgs()[0];
将为您提供可执行文件的完整路径
string directory = Path.GetDirectoryName(appFileName);
提取目录.
string envPath = Environment.GetEnvironmentVariable("PATH"); Environment.SetEnvironmentVariable(envPath + ";" + yourPath);
编辑当前进程的PATH环境变量.
Application.ExecutablePath (includes filename) Application.StartupPath (not includes filename)
这将为您提供应用程序启动的路径.希望这将是安装路径.