ShellBrowser Delphi Components Documentation
ContentsIndexHome
Example

The following example shows how to create a new file:

  var
    NewFile: IItemIdList;
  begin
    NewFile := TJamItemIdList.Create('C:newfile.txt');
    TJamFileOperation.NewFile(NewFile);
  end;