如何使用c#打开谷歌浏览器?
它显示 System.ComponentModel.Win32Exception:'系统找不到指定的文件'
我也尝试过Process.Start("C:\\Program Files(x86)\\Google\\Chrome\\Application\\chrome.exe");
,但它显示了相同的例外情况
using System;
using System.Diagnostics;
namespace tempTest
{
class Program
{
static void Main(string[] args)
{
Process.Start("chrome.exe");
}
}
}
答案 0 :(得分:2)
可以从注册表中读取chrome应用程序路径。 您可以尝试以下代码:
var key = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe", false);
if(key != null)
{
var path = Path.Combine(key.GetValue("Path").ToString(), "chrome.exe");
if(File.Exists(path))
{
Process.Start(path);
}
}