Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何更改存储在 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();
你看过NameTransform楼盘吗?
NameTransform
有关使用示例,请参阅SharpLibZip:添加没有路径的文件。
更新:显然,最新版本的 SharpZipLib 包含一个Add()采用文件名的重载。
Add()