26

SCORM パッケージを作成するために、いくつかのファイルを .zip に動的にパッケージ化する必要があります。コードを使用してこれを行う方法を知っている人はいますか? フォルダ構造を .zip 内でも動的に構築することは可能ですか?

4

9 に答える 9

22

DotNetZipはこれに適しています。

zipをResponse.OutputStreamに直接書き込むことができます。コードは次のようになります。

    Response.Clear();
    Response.BufferOutput = false; // for large files...
    System.Web.HttpContext c= System.Web.HttpContext.Current;
    String ReadmeText= "Hello!\n\nThis is a README..." + DateTime.Now.ToString("G"); 
    string archiveName= String.Format("archive-{0}.zip", 
                                      DateTime.Now.ToString("yyyy-MMM-dd-HHmmss")); 
    Response.ContentType = "application/zip";
    Response.AddHeader("content-disposition", "filename=" + archiveName);

    using (ZipFile zip = new ZipFile())
    {
        // filesToInclude is an IEnumerable<String>, like String[] or List<String>
        zip.AddFiles(filesToInclude, "files");            

        // Add a file from a string
        zip.AddEntry("Readme.txt", "", ReadmeText);
        zip.Save(Response.OutputStream);
    }
    // Response.End();  // no! See http://stackoverflow.com/questions/1087777
    Response.Close();

DotNetZipは無料です。

于 2009-03-26T06:24:54.090 に答える
17

もう外部ライブラリを使用する必要はありません。System.IO.Packagingには、コンテンツをzipファイルにドロップするために使用できるクラスがあります。ただし、それは単純ではありません。 これが例のあるブログ投稿です(最後にあります;それを掘り下げてください)。


リンクが安定していないため、投稿で提供されているJonの例を次に示します。

using System;
using System.IO;
using System.IO.Packaging;

namespace ZipSample
{
    class Program
    {
        static void Main(string[] args)
        {
            AddFileToZip("Output.zip", @"C:\Windows\Notepad.exe");
            AddFileToZip("Output.zip", @"C:\Windows\System32\Calc.exe");
        }

        private const long BUFFER_SIZE = 4096;

        private static void AddFileToZip(string zipFilename, string fileToAdd)
        {
            using (Package zip = System.IO.Packaging.Package.Open(zipFilename, FileMode.OpenOrCreate))
            {
                string destFilename = ".\\" + Path.GetFileName(fileToAdd);
                Uri uri = PackUriHelper.CreatePartUri(new Uri(destFilename, UriKind.Relative));
                if (zip.PartExists(uri))
                {
                    zip.DeletePart(uri);
                }
                PackagePart part = zip.CreatePart(uri, "",CompressionOption.Normal);
                using (FileStream fileStream = new FileStream(fileToAdd, FileMode.Open, FileAccess.Read))
                {
                    using (Stream dest = part.GetStream())
                    {
                        CopyStream(fileStream, dest);
                    }
                }
            }
        }

        private static void CopyStream(System.IO.FileStream inputStream, System.IO.Stream outputStream)
        {
            long bufferSize = inputStream.Length < BUFFER_SIZE ? inputStream.Length : BUFFER_SIZE;
            byte[] buffer = new byte[bufferSize];
            int bytesRead = 0;
            long bytesWritten = 0;
            while ((bytesRead = inputStream.Read(buffer, 0, buffer.Length)) != 0)
            {
                outputStream.Write(buffer, 0, bytesRead);
                bytesWritten += bytesRead;
            }
        }
    }
}
于 2009-03-25T14:52:20.510 に答える
7

SharpZipLibをご覧ください。そして、ここにサンプルがあります。

于 2009-03-25T14:32:26.267 に答える
3

DotNetZip は非常に使いやすい... ASP.Net で Zip ファイルを作成する

于 2011-02-25T16:51:23.257 に答える
1

これには、chilkat の無料コンポーネントを使用しました: http://www.chilkatsoft.com/zip-dotnet.asp。私が必要としていたほとんどすべてのことを行いますが、ファイル構造を動的に構築することについてはわかりません。

于 2009-03-25T14:34:01.863 に答える
0

「オンザフライ」で ZIP ファイルを作成するには、Rebex ZIPコンポーネントを使用します。

次のサンプルでは、​​サブフォルダーの作成を含め、完全に説明しています。

// prepare MemoryStream to create ZIP archive within
using (MemoryStream ms = new MemoryStream())
{
    // create new ZIP archive within prepared MemoryStream
    using (ZipArchive zip = new ZipArchive(ms))
    {            
         // add some files to ZIP archive
         zip.Add(@"c:\temp\testfile.txt");
         zip.Add(@"c:\temp\innerfile.txt", @"\subfolder");

         // clear response stream and set the response header and content type
         Response.Clear();
         Response.ContentType = "application/zip";
         Response.AddHeader("content-disposition", "filename=sample.zip");

         // write content of the MemoryStream (created ZIP archive) to the response stream
         ms.WriteTo(Response.OutputStream);
    }
}

// close the current HTTP response and stop executing this page
HttpContext.Current.ApplicationInstance.CompleteRequest();
于 2010-09-16T13:52:36.343 に答える