5

我正在使用 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;
}
4

1 回答 1

13

您可以简单地使用File.ReadAllBytes静态方法,例如:

return File.ReadAllBytes( shapeFileZip.Name );

从您的文件中读取。

于 2012-06-20T12:38:44.533 回答