大雀软件园

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

如何清空回收站

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

procedure emptyrecyclebin ; const   sherb_noconfirmation = $00000001 ;   sherb_noprogressui   = $00000002 ;   sherb_nosound        = $00000004 ; type   tshemptyrecyclebin = function (wnd : hwnd;                                   pszrootpath : pchar;                                   dwflags : dword                        ) : hresult; stdcall ; var   shemptyrecyclebin : tshemptyrecyclebin;    libhandle         : thandle; begin  { emptyrecyclebin }   libhandle := loadlibrary(pchar('shell32.dll')) ;   if libhandle <> 0 then      @shemptyrecyclebin := getprocaddress(libhandle, 'shemptyrecyclebina')   else   begin      messagedlg('failed to load shell32.dll.', mterror, [mbok], 0);      exit;   end;   if @shemptyrecyclebin <> nil then      shemptyrecyclebin(application.handle,                           nil,                         sherb_noconfirmation or sherb_noprogressui or sherb_nosound);   freelibrary(libhandle);   @shemptyrecyclebin := nil ; end;  { emptyrecyclebin } 

热门阅览

最新排行

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