ShellBrowser Delphi Components Documentation
ContentsIndexHome
Example

The following example shows how to delete multiple files:

  var
    Files: IItemIdListCollection;
  begin
    Files := TItemIdListCollection.Create;
    Files.Add('C:file1.exe');
    Files.Add('C:file2.exe');
    TJamFileOperation.Delete(Files);
  end;