Scalabium Software

SMExport advertising
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.


Published: August 4, 1999

See also
 
DBExport tools
Clarion to Text converter
Paradox to MS Access converter
Word Web-stream
SMReport
ABA Spreadsheet Convert
DBISAM Password Recovery
Fast Document Viewer
ABA Database Convert
Paradox Viewer
 
 


Contact to webmaster

 

Borland Software Code Gear Scalabium Delphi tips

Copyright© 1998-2026, Scalabium Software. All rights reserved.
webmaster@scalabium.com

SMExport/SMImport suites