在 C# 中,是否可以从文件名安全的字节数组中获取哈希值?
我需要对文件的内容进行哈希处理(根据文件内容获取唯一值),然后将文件写入文件系统,并以该哈希值命名。
这可能吗?我使用 SHA1 完成此操作,但在生成的哈希中得到了不文件系统安全的字符(斜杠、冒号等)。
I have a need to hash the contents of a file (to get a unique value, based on the file contents), and then write a file to the file system, named for that hash.
Is this possible? I did it using SHA1, but got characters in the resulting hash that were not file system safe (slashes, colons, etc.).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这基本上相当于 git 的作用
this is basically the equivalent of what git does