码迷,mamicode.com
首页 > Windows程序 > 详细

C# 通过调用Win32 API函数清除浏览器缓存和cookie

时间:2016-11-24 08:06:36      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:shell   div   tcp   rect   临时文件   ram   文件   tor   ptr   

public enum ShowCommands : int
{
SW_HIDE = 0,
SW_SHOWNOrmAL = 1,
SW_NOrmAL = 1,
SW_SHOWMINIMIZED = 2,
SW_SHOWMAXIMIZED = 3,
SW_MAXIMIZE = 3,
SW_SHOWNOACTIVATE = 4,
SW_SHOW = 5,
SW_MINIMIZE = 6,
SW_SHOWMINNOACTIVE = 7,
SW_SHOWNA = 8,
SW_RESTORE = 9,
SW_SHOWDEFAULT = 10,
SW_FORCEMINIMIZE = 11,
SW_MAX = 11
}

[DllImport("shell32.dll")]
static extern IntPtr ShellExecute( IntPtr hwnd, string lpOperation, string lpFile, string lpParameters, string lpDirectory, ShowCommands nShowCmd);

//清除IE临时文件
ShellExecute(IntPtr.Zero, "open", "rundll32.exe", " InetCpl.cpl,ClearMyTracksByProcess 8", "", ShowCommands.SW_HIDE);

 

C# 通过调用Win32 API函数清除浏览器缓存和cookie

标签:shell   div   tcp   rect   临时文件   ram   文件   tor   ptr   

原文地址:http://www.cnblogs.com/testsec/p/6095838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!