本文介绍了如何避免.net的ZipPackage类中的[Content_Types] .xml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道是否有任何方法可以避免在使用.net的 ZipPackage 时在zip文件中包含 [Content_Types] .xml 文件类。

I wish to know if there is any way to avoid to have a [Content_Types].xml file inside the zip file while using .net's ZipPackage class.

推荐答案

否。

邮编包是不是(正常)Zip文件。它们必须遵循强制的结构,并在根目录中包含该 Content_Types.xml 文件。 ZipPackage = ZipArchive +结构

Zip Packages are not (normal) Zip files. They must follow an imposed structure and contain that Content_Types.xml file in the root. ZipPackage = ZipArchive + Structure.

如果您要创建(尤其是要阅读)普通的Zip归档文件,您将需要一个额外的库,但BCL中没有支持。

If you want to create (and especially if you want to read) normal Zip archives you will need an extra library, there is no support in the BCL.

请参见(GPL)和

这篇关于如何避免.net的ZipPackage类中的[Content_Types] .xml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 04:57