What is MIME type "application/vnd.adobe.folio+zip"?
A MIME type is a string that tells browsers and other tools how to handle a particular kind of file.
application/vnd.adobe.folio+zip is a vendor-specific MIME type. It tells programs that a file uses a ZIP-based container for Adobe folio content.The +zip suffix means the file is structured as a ZIP archive. Inside, it bundles text, images, metadata, and layout information. Only specific Adobe software reads and processes this package in its intended form.
Its main use is the delivery of interactive digital publications. It ensures the layout and media work as designed, even across different devices.
- Main use: Packaging interactive digital publications.
- Enabling fixed layouts in e-publications.
- Bundling multimedia content and metadata.
- Optimizing delivery in Adobe software solutions.
Files using this MIME type carry the FOLIO file extension. For more details on media types, visit the IANA Media Types page.
Associated file extensions
Usage Examples
HTTP Header
When serving content with this MIME type, set the Content-Type header:
Content-Type: application/vnd.adobe.folio+zip
HTML
In HTML, you can specify the MIME type in various elements:
<a href="file.dat" type="application/vnd.adobe.folio+zip">Download file</a>
Server-side (Node.js)
Setting the Content-Type header in Node.js:
const http = require('http');
http.createServer((req, res) => {
res.setHeader('Content-Type', 'application/vnd.adobe.folio+zip');
res.end('Content here');
}).listen(3000);
Associated file extensions
FAQs
What software is required to open application/vnd.adobe.folio+zip files?
You typically need Adobe Digital Publishing Suite tools or the Adobe Content Viewer to view these files as intended interactive publications. Since the file is a ZIP container, you can also rename the extension from .folio to .zip to extract and inspect the internal assets using standard archive utilities like WinRAR or 7-Zip.
How do I configure Apache to serve .folio files correctly?
To ensure your Apache server delivers these files with the correct headers, add the following line to your .htaccess file or main configuration: AddType application/vnd.adobe.folio+zip .folio. This prevents browsers from misinterpreting the file as a generic binary stream.
Can web browsers display .folio files natively?
No, standard web browsers like Chrome, Firefox, or Safari do not have built-in engines to render application/vnd.adobe.folio+zip content. When a user clicks a link to this file type, the browser will typically prompt a download rather than displaying the interactive publication inline.
What does the +zip suffix mean in this MIME type?
The +zip suffix indicates that the file format is based on the standard ZIP compression scheme. This means the .folio file is actually an archive containing XML metadata, images, and HTML5 assets packaged together, which is a common structure for modern document formats.
Is application/vnd.adobe.folio+zip still widely used?
This MIME type is primarily associated with the legacy Adobe Digital Publishing Suite (DPS) workflow. While still supported in some enterprise environments, Adobe has largely transitioned to newer solutions like AEM Mobile, making .folio files less common in modern web development.
Why am I seeing a 'corrupted file' error when opening a .folio file?
This often happens if the file was transferred using an incorrect MIME type (like text/plain) or if the download was incomplete. Ensure your server is sending the correct application/vnd.adobe.folio+zip header and that the file validates as a proper ZIP archive before attempting to load it in Adobe software.
General FAQ
What is a MIME type?
A MIME (Multipurpose Internet Mail Extensions) type is a standard that indicates the nature and format of a document, file, or assortment of bytes. MIME types are defined and standardized in IETF's RFC 6838.
MIME types are important because they help browsers and servers understand how to process a file. When a browser receives a file from a server, it uses the MIME type to determine how to display or handle the content, whether it's an image to display, a PDF to open in a viewer, or a video to play.
MIME types consist of a type and a subtype, separated by a slash (e.g., text/html, image/jpeg, application/pdf). Some MIME types also include optional parameters.
How do I find the MIME type for a file?
You can check the file extension or use a file identification tool such as file --mime-type on the command line. Many programming languages also provide libraries to detect MIME types.
Why are multiple MIME types listed for one extension?
Different applications and historical conventions may use alternative MIME identifiers for the same kind of file. Showing them all helps ensure compatibility across systems.