教程集 www.jiaochengji.com
教程集 >  操作系统  >  windows  >  正文 michael_wp原创:用.net实现zip----1

michael_wp原创:用.net实现zip----1

发布时间:2019-12-13   编辑:jiaochengji.com
教程集为您提供michael,wp原创:用.net实现zip----1等资源,欢迎您收藏本站,我们将为您提供最新的michael,wp原创:用.net实现zip----1资源
//ZipEntry.cs
using System;
using System.IO;
namespace OrganicBit.Zip {
    /// <summary>Specifies how the the zip entry should be compressed.</summary>
    public enum CompressionMethod {
        /// <summary>No compression.</summary>
        Stored = 0,
        /// <summary>Default and only supported compression method.</summary>
        Deflated = 8
    }
    /// <summary>Specifies the amount of compression to apply to compressed zip entires.</summary>
    public enum CompressionLevel : int {
        /// <summary>Default compression level.    A good choice for speed and size.</summary>
        Default = -1,
        /// <summary>Do not perfrom compression.</summary>
        None = 0,
        /// <summary>Compress the entry as fast as possible size trading size for time.</summary>
        Fastest = 1,
        /// <summary>Compress the entry using a balance of size and time.</summary>

您可能感兴趣的文章:
michael_wp原创:用.net实现zip----1
michael_wp原创:用.net实现zip----5
michael_wp原创:用.net实现zip----6
michael_wp原创:用.net实现zip----4-2
michael_wp原创:用.net实现zip----4
michael_wp原创:用.net实现zip----2
michael_wp原创:用.net实现zip----3
PHP在线压缩zip的函数代码
python中zip是什么函数
php如何读取zip内容?(zip_entry_read函数的使用)

[关闭]
~ ~