大雀软件园

首页 软件下载 安卓市场 苹果市场 电脑游戏 安卓游戏 文章资讯 驱动下载
技术开发 网页设计 图形图象 数据库 网络媒体 网络安全 站长CLUB 操作系统 媒体动画 安卓相关
当前位置: 首页 -> 技术开发 -> 程序开发 -> 删除internet临时文件

删除internet临时文件

时间: 2021-07-31 作者:daque

uses wininet procedure tform1.button1click(sender: tobject); var lpentryinfo: pinternetcacheentryinfo; hcachedir: longword (*handle*); dwentrysize, dwlasterror: longword; begin //get size of first entry in dwentrysize dwentrysize := 0; findfirsturlcacheentry(nil, tinternetcacheentryinfo(nil^), dwentrysize); //create structure that can hold entry getmem(lpentryinfo, dwentrysize); //get first cache entry and handle to retrieve next entry, output url hcachedir := findfirsturlcacheentry(nil, lpentryinfo^, dwentrysize); if hcachedir <> 0 then    memo1.lines.add(string(lpentryinfo^.lpszsourceurlname));    //use this line to delete    {deleteurlcacheentry(lpentryinfo^.lpszsourceurlname);} //free structure freemem(lpentryinfo); //retrieve all subsequent entries repeat    dwentrysize := 0;    findnexturlcacheentry(hcachedir, tinternetcacheentryinfo(nil^), dwentrysize);    dwlasterror := getlasterror();    if getlasterror = error_insufficient_buffer then begin      getmem(lpentryinfo, dwentrysize);      if findnexturlcacheentry(hcachedir, lpentryinfo^, dwentrysize) then        memo1.lines.add(string(lpentryinfo^.lpszsourceurlname));      freemem(lpentryinfo);    end; until dwlasterror = error_no_more_items; end; 

热门阅览

最新排行

Copyright © 2019-2021 大雀软件园(www.daque.cn) All Rights Reserved.