ShellBrowser Delphi Components Documentation
ContentsIndexHome
Example

The following example shows how to delete a file:

  var
    File: IItemIdList;
  begin
    File := TJamItemIdList.Create('C:file.exe');
    TJamFileOperation.Delete(File);
  end;