cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Read a zip file

shubhisharma
New Contributor

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 4

christwr
Contributor III

Does the decompress snap not work for you?

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
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.