My requirement is:
- User will upload a
.zipfile (which will contain multiple files) via API and I need to send back the files to the user in response.
My solution 1:
- returning list of the file download link to user in response. but the user is not happy with this solution.
Is there any other way return the list of file?
Alternative solution would be to unzip your archive directly in browser using a library like
zip.jsor similar.