问题描述:C1Zip:处理标准Zip文件
问题解答:本文介绍用C1Zip的C1ZipFile类处理Zip文件,它包括创建、打开、编辑标准的Zip文件。还可以列出Zip文件中的条目,添加、删除、扩展或查看文件,压缩整个目录,并使用密码保护/加密。C1ZipFile是处理zip文件的类。C1ZipFile具有一个C1ZipFile.Entries属性,该属性代表了一个zip文件中条目的集合。
关键代码:
- // 摘要:
- // Specifies the level of compression to be applied when adding entries to a
- // C1.C1Zip.C1ZipFile.
- public enum CompressionLevelEnum
- {
- // 摘要:
- // High compression, high speed.
- DefaultCompression = -1,
- //
- // 摘要:
- // No Compression.
- NoCompression = 0,
- //
- // 摘要:
- // Low compression, highest speed.
- BestSpeed = 1,
- //
- // 摘要:
- // Highest compression, low speed.
- BestCompression = 9,
- }
复制代码
效果截图:
源码下载:
C1Zip:处理标准Zip文件示例 |