不同的浏览器会把cookie文件保存在不同的地方

  以下是C# WebBrowser控件cookies的存放路径

  C:\Users\{你的帐号名}\AppData\Local\Microsoft\Windows\INetCookies

  C# 清除cookies-LMLPHP

  cookies文件格式请查看相关资料

下面是清除cookies的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO; namespace DelCookies
{
class Program
{
static void Main(string[] args)
{
DelCookies("360.cn/");
Console.WriteLine("cookies已删除.");
Console.Read();
} static void DelCookies(string domain) //domain是cookies所属域,此方法是通过所属域过滤清除cookies
{
//获取目录中文件路径
string[] cookies = Directory.GetFiles(Environment.GetFolderPath(Environment.SpecialFolder.Cookies)); foreach (string file in cookies)
{
try
{
StreamReader sr = new StreamReader(file);
string txt = sr.ReadToEnd();
sr.Close();
if (txt.IndexOf(domain) != -) //判断是否删除的cookies文件
{
File.Delete(file);
}
}
catch (Exception ex)
{ }
}
}
}
}

原文地址:http://www.cnblogs.com/iamlucky/p/6010858.html

04-30 23:48