English 中文(简体)
SharpZipLib图书馆
原标题:SharpZipLib library Compress a folder with subfolders with high level compresion and efficient time

I used many existing codes and I tried to zip the folder in many ways but still I am having problem with time and folder size (still approx same size). this code is from the source of the library and still not giving the wanted result

static void Main(string[] args)
{
    //copyDirectory(@"C:x", @"D:1");
    ZipOutputStream zip = new ZipOutputStream(File.Create(@"d:2.zip"));

    zip.SetLevel(9);

    string folder = @"D:music";

    ZipFolder(folder, folder, zip);
    zip.Finish();
    zip.Close();
}

public static void ZipFolder(string RootFolder, string CurrentFolder, ZipOutputStream zStream)
{
    string[] SubFolders = Directory.GetDirectories(CurrentFolder);

    foreach (string Folder in SubFolders)
        ZipFolder(RootFolder, Folder, zStream);

    string relativePath = CurrentFolder.Substring(RootFolder.Length) + "/";

    if (relativePath.Length > 1)
    {
        ZipEntry dirEntry;

        dirEntry = new ZipEntry(relativePath);
        dirEntry.DateTime = DateTime.Now;
    }

    foreach (string file in Directory.GetFiles(CurrentFolder))
    {
        AddFileToZip(zStream, relativePath, file);
    }
}

private static void AddFileToZip(ZipOutputStream zStream, string relativePath, string file)
{
    byte[] buffer = new byte[4096];
    string fileRelativePath = (relativePath.Length > 1 ? relativePath : string.Empty) + Path.GetFileName(file);
    ZipEntry entry = new ZipEntry(fileRelativePath);

    entry.DateTime = DateTime.Now;
    zStream.PutNextEntry(entry);

    using (FileStream fs = File.OpenRead(file))
    {
        int sourceBytes;

        do
        {
            sourceBytes = fs.Read(buffer, 0, buffer.Length);
            zStream.Write(buffer, 0, sourceBytes);
        } while (sourceBytes > 0);
    }
}
最佳回答

扼杀夹 = @“D:music”

If you re trying to zip MP3 files you re not going to see much shrinking.

压缩算法可以做些什么是有限的。 更多的压缩总是需要更多的时间。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签