Forum Discussion

shubhisharma's avatar
shubhisharma
New Contributor
8 years ago

Read a zip file

Hello all,

I have a requirement where: I am getting a response from a REST GET as a ZIP file.
I need to extract out this zip file.Can anyone suggest me a way to do so.

Thanks.

4 Replies

    • tstack's avatar
      tstack
      Former Employee

      You can extract the contents of a ZIP file with the ZipFile Read Snap. Note that the snap reads the file from a location and doesn’t take it as an input from the upstream snap. If the request you’re doing is to a URL, it might work fine. Otherwise, you might need to write the output of the REST GET to a temporary file before reading it into the ZipFile Read snap.

      The Decompress snap is for stream compression, like GZIP/BZIP2, not compressed archives, like ZIP.

      • smit66's avatar
        smit66
        New Contributor II

        We have a similar situation, we are making REST POST request and getting back zip in response. I want to rename files (files which we get after extracting zip file). Is there a way, we can perform this task without writing the file to the temporary location?

        Thanks.