
























using System.IO;
using System.Text;namespace FileService
{
public static class ExtensionMethods
{
public static string MD5Code(this FileInfo fileInfo)
{
var data = fileInfo.BinaryData();byte[] hash = new System.Security.Cryptography.MD5CryptoServiceProvider().ComputeHash(data);
var builder
= new StringBuilder();foreach (var b in hash) }
}
抓檔案的binary 及 MD5
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。