Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想删除 .zip 文件中的文件夹。
我试过了
zip.RemoveEntry(META-INF);
但它不起作用
如何删除?
我正在使用 IonicZip
您必须使用引号,因为RemoveEntry需要文件名并且您可能没有定义META-INF.
RemoveEntry
META-INF
您必须将代码更改为:
zip.RemoveEntry("META-INF");