Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
ZipArchive
Last updated at 9:53 pm UTC on 18 September 2016
Example

 content := 'https://raw.githubusercontent.com/user/repo/branch/myimportant.zip' asUrl retrieveContents


 UIManager default informUserDuring: 
    [:b | (ZipArchive new readFrom: 
              (ReadStream on: content asByteArray)) 
          extractAllTo: (FileDirectory default) informing: b
    ].