c# 更改任何文件的 FileVersionInfo
借助FileVersionInfo类很容易读取文件的额外信息, 但我有什么办法可以改变它吗?
谢谢。
With FileVersionInfo class is very easy to read file extra information,
but is there any way i can change it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.NET Framework 中没有任何类可以让您轻松地做到这一点。文件版本数据存储为本机资源,因此可以通过 开始更新资源。但它需要详细了解格式它存储在可执行文件中。
There's no class in the .NET Framework that lets you do that easily. File version data is stored as a native resource, so it can be changed by functions like BeginUpdateResource. But it requires detailed knowledge about the format in which it's are stored in the executable.