Firefox 历史文件的路径包含一个配置文件编号如何在 C# 中动态获取此编号
C:\Users\\AppData\Roaming\Mozilla\Firefox\Profiles\.default\formhistory.sqlite
您可以读出以下包含每个 firefoxprofile 的配置文件名称的 ini 文件:
"C:\Users\Username\AppData\Roaming\Mozilla\Firefox\profiles.ini"
您需要阅读profiles.ini 文件并捕获默认配置文件
using System;
using System.Linq;
using System.IO;
namespace Firefox
{
class Reader
{
public static string ReadFirefoxProfile()
{
string apppath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
string mozilla = System.IO.Path.Combine(apppath, "Mozilla");
bool exist = System.IO.Directory.Exists(mozilla);
if (exist)
{
string firefox = System.IO.Path.Combine(mozilla, "firefox");
if (System.IO.Directory.Exists(firefox))
{
string prof_file = System.IO.Path.Combine(firefox, "profiles.ini");
bool file_exist = System.IO.File.Exists(prof_file);
if (file_exist)
{
StreamReader rdr = new StreamReader(prof_file);
string resp = rdr.ReadToEnd();
string[] lines = resp.Split(new string[] { "\r\n" }, StringSplitOptions.None);
string location = lines.First(x => x.Contains("Path=")).Split(new string[] { "=" }, StringSplitOptions.None)[1];
string prof_dir = System.IO.Path.Combine(firefox, location);
return prof_dir;
}
}
}
return "";
}
}
}
单击 Windows 开始按钮并%APPDATA%\Mozilla\Firefox\Profiles\
在“开始”菜单底部的“搜索”框中键入,而不按 Enter。配置文件列表将出现在“开始”菜单的顶部。
单击名称中带有“默认”的配置文件以在窗口中打开它。