This question already has an answer here:
- .rar, .zip files MIME Type 5 answers
I am sending a zip file to server via HTTPREQUEST what should the content-type be for this kind of file? the file is zip file that contains images on type png.
thanks
This question already has an answer here:
I am sending a zip file to server via HTTPREQUEST what should the content-type be for this kind of file? the file is zip file that contains images on type png.
thanks
The standard MIME type for ZIP files is
application/zip
. The types for the files inside the ZIP does not matter for the MIME type.As always, it ultimately depends on your server setup.
If you want the MIME type for a file, you can use the following code:
In the case of a ZIP file, this will return
application/zip
.