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

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

发布时间:2019-12-13   编辑:jiaochengji.com
教程集为您提供michael,wp原创:用.net实现zip----4等资源,欢迎您收藏本站,我们将为您提供最新的michael,wp原创:用.net实现zip----4资源
//ZipLib.cs
using System;
using System.IO;
using System.Text;
using System.Runtime.InteropServices;
namespace OrganicBit.Zip {
    /// <summary>Support methods for uncompressing zip files.</summary>
    /// <remarks>
    ///     <para>This unzip package allow extract file from .ZIP file, compatible with PKZip 2.04g WinZip, InfoZip tools and compatible.</para>
    ///     <para>Encryption and multi volume ZipFile (span) are not supported.    Old compressions used by old PKZip 1.x are not supported.</para>
    ///     <para>Copyright (C) 1998 Gilles Vollant.    http://www.winimage.com/zLibDll/unzip.htm</para>
    ///     <para>C# wrapper by Gerry Shaw (gerry_shaw@yahoo.com).    http://www.organicbit.com/zip/</para>
    /// </remarks>
    internal sealed class ZipLib {
        // prevent instances of this class from being constructed
        private ZipLib() {}
        /*
       Create a zipfile.
       pathname contain on Windows NT a filename like "c:zlibzlib111.zip" or on an Unix computer "zlib/zlib111.zip".

您可能感兴趣的文章:
michael_wp原创:用.net实现zip----4-2
michael_wp原创:用.net实现zip----4
michael_wp原创:用.net实现zip----1
michael_wp原创:用.net实现zip----5
michael_wp原创:用.net实现zip----6
michael_wp原创:用.net实现zip----2
michael_wp原创:用.net实现zip----3
python中zip是什么函数
php利用ZipArchive类实现文件压缩与解压
PHP在线压缩zip的函数代码

[关闭]
~ ~