游子日月长

笑渐不闻声渐悄,多情却被无情恼!

导航

EmptyRecycle() 清空回收站

//在uses下面引用
function SHEmptyRecycleBinA(Wnd:HWND;str:PChar;WRD:DWORD):Integer;stdcall; external 'SHell32.dll';
 
{清空回收站}

//调用 EmptyRecycle();

function EmptyRecycle():boolean
begin 
  Result:=true
  try 
    if Application.MessageBox('确定要清空回收站吗?','提示',MB_YESNOID_YES then 
       SHEmptyRecycleBinA(Application.Handle,''$7); 
  except 
    Result:=false
  end
end;

posted on 2016-12-07 17:40  游子日月长  阅读(214)  评论(0编辑  收藏  举报