DotNetZip:将ZipFile转换为字节[]数组

问题描述 投票:4回答:1

我正在使用DotNetZip将文件添加到zip存档中,该文件已从文件系统中读取。我想将生成的ZipFile转换为byte []数组。任何帮助将不胜感激。我的代码如下所示。

public byte[] AddPrjFile(FileStream shapeFileZip, Uri prjLocation)
{
    string prjFileAbsPath = prjLocation.AbsolutePath;
    using (ZipFile zip = ZipFile.Read(shapFileZip))
    {
        ZipEntry e = zip.AddFile(prjFileAbsPath);
        e.FileName = zipFile.Name + ".prj";
    }

    return byte_array;
}
c# byte dotnetzip
1个回答
13
投票

您可以简单地使用File.ReadAllBytes static method,例如:

File.ReadAllBytes

从文件中读取。

© www.soinside.com 2019 - 2024. All rights reserved.