gpt4 book ai didi

c# - 本地获取 Chrome 和 Firefox 版本,C#

转载 作者:行者123 更新时间:2023-12-02 01:38:21 25 4
gpt4 key购买 nike

我只是使用常规 C#,而不是 ASP.NET。我想知道是否可以获得 Chrome 和 Firefox 的版本。我知道对于 IE,您可以通过注册表获取版本。据我所知,Chrome 和 Firefox 不会将该信息存储在注册表中。

提前致谢。

最佳答案

如果您知道应用程序的完整路径,则可以使用 System.Diagnostics.FileVersionInfo类来获取版本号。

这是一个简单的控制台应用程序,它从注册表中读取 Chrome 和 Firefox 的安装路径,并输出它们的版本号:

using System;
using System.Diagnostics;
using Microsoft.Win32;

class Program
{
static void Main(string[] args)
{
object path;
path = Registry.GetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe", "", null);
if (path != null)
Console.WriteLine("Chrome: " + FileVersionInfo.GetVersionInfo(path.ToString()).FileVersion);

path = Registry.GetValue(@"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\firefox.exe", "", null);
if (path != null)
Console.WriteLine("Firefox: " + FileVersionInfo.GetVersionInfo(path.ToString()).FileVersion);
}
}

示例输出:

Chrome: 24.0.1312.52
Firefox: 16.0.2

关于c# - 本地获取 Chrome 和 Firefox 版本,C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14299382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com