使用Process.Start()时Win32Exception

时间:2019-11-19 07:59:56

标签: c#

如何使用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");
        }
    }
}

1 个答案:

答案 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);
                }
            }