Ionic.Zip.AddFile
会出错:
“条目名称必须为非空且非空”
我的代码:
zip.AddFile(filePath, File path);
或
zip.AddFile(filePath,"")
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=CallRecording" + DateTime.Now);
HttpContext.Current.Response.ContentType = "application/zip";
zip.Save(HttpContext.Current.Response.OutputStream);
HttpContext.Current.Response.End();
两个代码都出现相同的错误。
答案 0 :(得分:0)
"非空和非空"错误意味着您正在尝试添加具有空值或""的文件。作为文件名。
您可能会发现列表中的某个值为空或为空。