核心提示:function SHMyDelDirectory(const Source: string): boolean;var fo: TSHFILEOPSTRUCT;begin FillChar(fo,...
function SHMyDelDirectory(const Source: string): boolean;var
fo: TSHFILEOPSTRUCT;
begin
FillChar(fo, SizeOf(fo), 0);
with fo do
begin
Wnd := 0;
wFunc := FO_Delete;
pFrom := PChar(Source + #0);
pTo := #0#0;
fFlags := FOF_NOCONFIRMATION + FOF_SILENT;
end;
Result := (SHFileOperation(fo) = 0);
end;