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