我需要使用C#(或任何其他语言,如果它是首选的)在循环中运行,并删除Firefox cookie(如果有的话)。
现在,这是我的代码:
while (true) {
System.IO.FileInfo fi = new System.IO.FileInfo(@"C:\Users\ameir\AppData\Roaming\Mozilla\Firefox\Profiles\f7da5usz.default\cookies.sqlite");
try
{
fi.Delete();
}
catch (System.IO.IOException e)
{
Console.WriteLine(e.Message);
}
}
但这不起作用,因为Firefox正在使用该文件。