ShellBrowser Delphi Components Documentation
ContentsIndexHome
Example

The following example shows how to unzip the contents of a ZIP file:

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