| Scalabium Software | |
| Knowledge for your independence'. | |
|  Home  Delphi and C++Builder
        tips | 
| #6: How can I delete a file into Recycle Bin? | 
| 
 | uses ShellApi;
var FileOpStruc: TSHFileOpStruct;
    s: PChar;
begin
  s := 'C:\your_full_path\your_file_name.txt';
  with FileOpStruc do
  begin
    Wnd := 0;
    wFunc := FO_DELETE;
    pFrom := s;
    fFlags := FOF_ALLOWUNDO
  end;
  SHFileOperation(FileOpStruc);
end;
You can delete a files by some mask too.
 | 
|       | Copyright© 1998-2025, Scalabium
        Software. All rights reserved. |