设置 ZipInfo mime 类型

发布于 2024-10-19 09:26:43 字数 51 浏览 4 评论 0原文

使用 python ZipFile 创建 zip 存档时,如何设置文件 mime 类型?

When creating zip archive using python ZipFile, how can i set file mime types?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水中月 2024-10-26 09:26:43

尽管 ZIP 格式本身具有 MIME 内容类型:application\zip,但 ZIP 格式不携带存档中包含的各个文件的 MIME 内容类型。

确定 ZIP 存档中包含的文件的适当 MIME 内容类型的唯一方法是检查文件名并使用其文件扩展名来确定可能的 MIME 内容类型。

The ZIP format doesn't carry MIME content-type for the individual files contained in the archive, though the ZIP format itself has a MIME content-type: application\zip.

The only way you've got to determine the appropriate MIME content-type for a file contained in a ZIP archive is by examination of the file name and using its file extension to determine the likely MIME content-type.

極樂鬼 2024-10-26 09:26:43

这个问题没有任何意义。文件以二进制内容的形式与文件大小(和标志)一起存储在 ZIP 存档中。但这里绝对不涉及 mimetype 信息。

This question does not make any sense. Files are stored as binary content inside the ZIP archive together with the filesize (and flags afaik). But there is absolutely no mimetype information involved here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文