ZipOutputStream将数据文件追加到Exist Entry?
美好的一天,asp.net c#,Framework 4.0
我使用Ionic.Zip压缩数据文件(上传程序处理程序)来飞行。
上传大文件。
如果文件上传了完整内容(不是块) - 没关系,但是如果用文件上传文件......我必须有问题。
如何将所有块上传文件添加到存档(一个文件 - 一个条目)?没有保存文件本身的驱动器。
抱歉我的英语。我的部分代码:
使用lenght = currents chunk创建临时文件
using (FileStream fs = new FileStream(Path.Combine(pathToCreate, "chunkfile"), FileMode.Create))
{
buffer = new byte[fileUpload.InputStream.Length];
fileUpload.InputStream.Read(buffer, 0, buffer.Length);
fs.Write(buffer, 0, buffer.Length);
}
获取zip条目:
using (ZipFile zipfile = ZipFile.Read(fullpath))
{
if (zipfile.ContainsEntry(fileName))
{
zipflag = true;
}
}
如果存在条目 - 附加数据,如果不存在,则创建新的:
if (!zipflag)
{
using (ZipFile zipfile = ZipFile.Read(fullpath))
{
using ( FileStream input = new FileStream (Path.Combine(pathToCreate, "chunkfile"), FileMode.Open, FileAccess.Read))
{
using (FileStream output = new FileStream(fullpath, FileMode.Create, FileAccess.Write))
{
using (ZipOutputStream zipout = new ZipOutputStream(output))
{
buffer = new byte[input.Length];
zipout.PutNextEntry(fileName);
int size;
do
{
size = input.Read(buffer, 0, buffer.Length);
zipout.Write(buffer, 0, size);
} while (size > 0);
}
}
}
}
}
else
{
buffer = FileArray(Path.Combine(pathToCreate, "chunkfile"));
AppendAllBytes(fullpath, buffer);
}
}
public static void AppendAllBytes(string path, byte[] bytes)
{
using (var stream = new FileStream(path, FileMode.Append))
{
using (ZipOutputStream zipout = new ZipOutputStream(path))
{
zipout.Write(bytes, 0, bytes.Length);
}
}
}
private byte[] FileArray(string filename)
{
FileStream fs = new FileStream(filename, FileMode.Open, FileAccess.Read);
// Create a byte array of file stream length
byte[] datachunk = new byte[fs.Length];
//Read block of bytes from stream into the byte array
fs.Read(datachunk, 0, System.Convert.ToInt32(fs.Length));
//Close the File Stream
fs.Close();
return datachunk; //return the byte data
}
变量此字符串,Zip文件的完整路径。
我正在尝试使用:
using (var stream = new FileStream(path, FileMode.Append))
{
ZipFile zipfile = ZipFile.Read(path);
using (StreamReader sr = new StreamReader(path))
{
var zn = zipfile.UpdateEntry(fileName, bytes);
sr.Close();
sr.Dispose();
}
}
无效,文件未更新。
请帮助。