ShellBrowser Delphi Components Documentation
ContentsIndexHome
Example

The following example shows how to append a folder to a ZIP file:

  var
    Folder, ZipFile: IItemIdList;
  begin
    Folder := TJamItemIdList.Create('C:UsersPublic');
    ZipFile := TJamItemIdList.Create('C:Zipfile.zip');
    TJamFileOperation.Zip(Folder, ZipFile);
  end;