c# 在提取嵌入资源之前获取其 md5 哈希值
我们有一个嵌入式资源,需要在提取文件之前获取文件的 md5 哈希值,以便知道它是否与现有文件不同(因为如果我们必须提取它来比较它们,最好将其替换为直接提交)
任何建议表示赞赏
We have an embedded resource and need to get the md5 hash of the file before extracting it in order to know if it is different from an already existing file, (becouse if we have to extract it to compare them it would be better to replace the file directly)
Any suggestion is appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是什么样的嵌入式资源?如果您使用
Assembly.GetManifestResourceStream()
找到了这种方法,那么最简单的方法是:如果这没有帮助,请提供有关您通常如何访问/提取资源的更多信息。
What sort of embedded resource is it? If it's one you get hold of using
Assembly.GetManifestResourceStream()
, then the simplest approach is:If that doesn't help, please give more information as to how you normall access/extract your resource.
您可以使用内存流
You can use MemoryStream