本文整理自网络,侵删。
uses ShellAPI;
function DeleteFileWithUndo(sFileName: string): boolean;var fos: TSHFileOpStruct;begin FillChar(fos, SizeOf(fos), 0); with fos do begin//delphitop.com wFunc := FO_DELETE; pFrom := PChar( sFileName ); fFlags := FOF_ALLOWUNDO or FOF_NOCONFIRMATION or FOF_SILENT; end; Result := (0 = ShFileOperation(fos));end;
相关阅读 >>
Delphi sccoloredid,星际争霸彩色 id 修改器 v0.2.0,支持 windows vista
Delphi getrandompassword 生成随机密码
Delphi 泛型容器单元(generics.collections) tdictionary<t>
更多相关阅读请进入《Delphi》频道 >>