Jquery中文网 www.jquerycn.cn
Jquery中文网 >  操作系统  >  windows  >  正文 michael_wp原创:用.net实现zip----5

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

发布时间:2019-12-13   编辑:www.jquerycn.cn
jquery中文网为您提供michael,wp原创:用.net实现zip----5等资源,欢迎您收藏本站,我们将为您提供最新的michael,wp原创:用.net实现zip----5资源
//ZipReader.cs
using System;
using System.Collections;
using System.Runtime.Serialization;
namespace OrganicBit.Zip {
    /// <summary>Provides support for reading files in the ZIP file format. Includes support for both compressed and uncompressed entries.</summary>
    /// <example>This example shows how to view the entries in a ZIP file.
    /// <code>
    /// public static void View(string zipFileName) {
    ///     ZipReader reader = new ZipReader(zipFileName);
    ///
    ///     Console.WriteLine("Archive: {0} ({1} files)", zipFileName, reader.Entries.Count);
    ///     Console.WriteLine(reader.Comment);
    ///
    ///     string format = "{0,8} {1,8} {2,5} {3,10} {4,5} {5}";
    ///     Console.WriteLine(format, " Length ", "    Size    ", "Ratio", "     Date     ", "Time ", "Name");
    ///     Console.WriteLine(format, "--------", "--------", "-----", "----------", "-----", "----");

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

[关闭]