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

作者:简简单单 2008-01-12
//ZipWriter.cs
using System;
using System.Runtime.Serialization;
namespace OrganicBit.Zip {
    /// Provides support for writing files in the ZIP file format. Includes support for both compressed and uncompressed entries.
    /// This example shows how to create a ZIP file.
    ///
    /// public static void Add(string zipFileName, string[] entryPatterns) {
    ///     string currentDirectory = Directory.GetCurrentDirectory();
    ///     Console.WriteLine("Creating {0}", zipFileName);
    ///
    ///     ZipWriter writer = new ZipWriter(zipFileName);
    ///
    ///     // buffer to hold temp bytes
    ///     byte[] buffer = new byte[4096];
    ///     int byteCount;
    ///
    ///     // add files to archive
    ///     foreach (string pattern in entryPatterns) {
    ///    foreach (string path in Directory.GetFiles(currentDirectory, pattern)) {
    ///        string fileName = Path.GetFileName(path);

相关文章

精彩推荐

一聚教程网

Copyright © 2010-2024

111com.net All Rights Reserved