如何更改存储在zip文件中的名称?
此外,可以通过以下方式添加文件:
ZipFile zf = new ZipFile("path");
zf.BeginUpdate();
zf.Add(filePath); <-- i would like to also be able to change it when adding
zf.CommitUpdate();
答案 0 :(得分:3)
你看过NameTransform
属性了吗?
有关使用示例,请参阅SharpLibZip: Add file without path。
更新:显然,最新版本的SharpZipLib包含Add()
的过载,该过载采用文件名。