返回 zip 内文件的版本
我今天的问题是我正在尝试检索 zip 中文件的版本。我在 C# 中这样做。
仅就上下文而言,发生的情况是第三方将软件版本放置到测试服务器上,而我使用版本信息手动更新 wiki。
到目前为止,我已经创建了维基机器人(并不困难),困难在于我将如何检索版本。
任何帮助表示赞赏,谢谢!
My problem today is that I'm trying to retrieve the version of a file that is located within a zip. I'm doing so in C#.
Just for context, what happens is that a 3rd party places builds of software onto a test server, and I'm manually updating the wiki with the version information.
I've thus far created the wikibot (not difficult), the difficulty appears to how I'm going to go about retrieving the version.
Any help is appreciated, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先解压缩文件(使用 SharpZipLib 等第三方工具,或使用 System.Io.Compression)。然后使用 FileVersionInfo.FileVersion 获取您的文件版本。瞧!
First unzip the file (using a 3rd-party tool like SharpZipLib etc., or using System.Io.Compression). Then use FileVersionInfo.FileVersion to get your file version. Voila!