SCORMパッケージを作成するためにいくつかのファイルを.Zipに動的にパッケージ化する必要があります。コードを使用してこれを行う方法を知っている人はいますか? .Zip内にも動的にフォルダー構造を構築することは可能ですか?
もう外部ライブラリを使用する必要はありません。 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;
}
}
}
}
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は無料です。
SharpZipLib をご覧ください。そしてここに サンプル があります。
DotNetZipは非常に使いやすいです... ASP.NetでのZipファイルの作成
私はこれにchilkatの無料コンポーネントを使用しました: http://www.chilkatsoft.com/Zip-dotnet.asp 。必要なことはほとんどすべて実行しますが、ファイル構造を動的に構築するかどうかはわかりません。
DotNetZipを使用してこれを行うことができます。 Visual Studio Nugetパッケージマネージャーからダウンロードするか、 DotnetZip から直接ダウンロードできます。次に、以下のコードを試してください。
/// <summary>
/// Generate Zip file and save it into given location
/// </summary>
/// <param name="directoryPath"></param>
public void CreateZipFile(string directoryPath )
{
//Select Files from given directory
List<string> directoryFileNames = Directory.GetFiles(directoryPath).ToList();
using (ZipFile Zip = new ZipFile())
{
Zip.AddFiles(directoryFileNames, "");
//Generate Zip file folder into loation
Zip.Save("C:\\Logs\\ReportsMyZipFile.Zip");
}
}
ファイルをクライアントにダウンロードする場合は、以下のコードを使用してください。
/// <summary>
/// Generate Zip file and download into client
/// </summary>
/// <param name="directoryPath"></param>
/// <param name="respnse"></param>
public void CreateZipFile(HttpResponse respnse,string directoryPath )
{
//Select Files from given directory
List<string> directoryFileNames = Directory.GetFiles(directoryPath).ToList();
respnse.Clear();
respnse.BufferOutput = false;
respnse.ContentType = "application/Zip";
respnse.AddHeader("content-disposition", "attachment; filename=MyFiles.Zip");
using (ZipFile Zip = new ZipFile())
{
Zip.CompressionLevel = CompressionLevel.None;
Zip.AddFiles(directoryFileNames, "");
Zip.Save(respnse.OutputStream);
}
respnse.flush();
}
.NET Framework 4.5以降を使用している場合は、サードパーティライブラリを避けて、System.IO.Compression.ZipArchive
ネイティブクラスを使用できます。
次に、MemoryStreamと2つのファイルを表す2つのバイト配列を使用した簡単なコードサンプルを示します。
byte[] file1 = GetFile1ByteArray();
byte[] file2 = GetFile2ByteArray();
using (MemoryStream ms = new MemoryStream())
{
using (var archive = new ZipArchive(ms, ZipArchiveMode.Create, true))
{
var zipArchiveEntry = archive.CreateEntry("file1.txt", CompressionLevel.Fastest);
using (var zipStream = zipArchiveEntry.Open()) zipStream.Write(file1, 0, file1.Length);
zipArchiveEntry = archive.CreateEntry("file2.txt", CompressionLevel.Fastest);
using (var zipStream = zipArchiveEntry.Open()) zipStream.Write(file2, 0, file2.Length);
}
return File(ms.ToArray(), "application/Zip", "Archive.Zip");
}
ActionResult
を返すMVCコントローラー内で使用できます。または、Zipアーカイブを物理的に作成する必要がある場合は、MemoryStream
をディスクに永続化するか、完全にFileStream
に置き換えることができます。
このトピックに関する詳細については、私のブログで この投稿を読む もできます。
「オンザフライ」で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();