我正在尝试使用密码在 .net核心中生成zip(或其他压缩格式)文件,但我却一无所获。

我正在使用System.IO.Compression,但是它没有带密码的方法。

我只找到了Chilkat这个工具,但它不是免费的。

谁能帮我?

谢谢!

最佳答案

使用SharpZipLib.NETStandard NuGet包。

public async Task<byte[]> ZipAsync(IEnumerable<KeyValuePair<string, Stream>> files, string mime, string password)
{
    ExceptionHelper.ThrowIfNull(nameof(files), files);
    ExceptionHelper.ThrowIfNull(nameof(mime), mime);

    using (var output = new MemoryStream())
    {
        using (var zipStream = new ZipOutputStream(output))
        {
            zipStream.SetLevel(9);

            if (!string.IsNullOrEmpty(password))
            {
                zipStream.Password = password;
            }

            foreach (var file in files)
            {
                var newEntry = new ZipEntry($"{file.Key}.{mime}") { DateTime = DateTime.Now };
                zipStream.PutNextEntry(newEntry);

                await file.Value.CopyToAsync(zipStream);
                zipStream.CloseEntry();
            }
        }

        return output.ToArray();
    }
}

10-07 13:02