访问浏览器收藏夹 (WinForms/C#)

发布于 2024-09-24 21:08:02 字数 64 浏览 3 评论 0原文

在哪里以及如何访问网络浏览器收藏夹和历史记录?

所有浏览器的位置都一样吗?

谢谢!

Where and how can I access web browser Favorites and history?

Is it the same place for all browsers?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九局 2024-10-01 21:08:02

这是一个获取 IE 历史记录的小代码:

    public List<string> PopulateUrlList()
{
    string regKey = "Software\\Microsoft\\Internet Explorer\\TypedURLs";
    RegistryKey subKey = Registry.CurrentUser.OpenSubKey(regKey);
    string url = null;
    List<string> urlList = new List<string>();
    int counter = 1;
    while (true) {
        string sValName = "url" + counter.ToString();
        url = (string)subKey.GetValue(sValName);
        if ((object)url == null) {
            break; // TODO: might not be correct. Was : Exit While
        }
        urlList.Add(url);
        counter += 1;
    }
    return urlList;
}

this is a small code to get the history for IE :

    public List<string> PopulateUrlList()
{
    string regKey = "Software\\Microsoft\\Internet Explorer\\TypedURLs";
    RegistryKey subKey = Registry.CurrentUser.OpenSubKey(regKey);
    string url = null;
    List<string> urlList = new List<string>();
    int counter = 1;
    while (true) {
        string sValName = "url" + counter.ToString();
        url = (string)subKey.GetValue(sValName);
        if ((object)url == null) {
            break; // TODO: might not be correct. Was : Exit While
        }
        urlList.Add(url);
        counter += 1;
    }
    return urlList;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文