SoftBasicCalculateFileMD5 方法 |
获取文件的md5码
Get the MD5 code of the file
命名空间:
HslCommunication.BasicFramework
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static string CalculateFileMD5(
string filePath
)
Public Shared Function CalculateFileMD5 (
filePath As String
) As String
public:
static String^ CalculateFileMD5(
String^ filePath
)
static member CalculateFileMD5 :
filePath : string -> string
参数
- filePath
- 类型:SystemString
文件的路径,既可以是完整的路径,也可以是相对的路径 -> The path to the file
返回值
类型:
StringMd5字符串
示例
下面举例实现获取一个文件的md5码
try
{
string md5 = SoftBasic.CalculateFileMD5( "D:\\123.txt" );
Console.WriteLine( md5 );
}
catch(Exception ex)
{
Console.WriteLine( "failed : " + ex.Message );
}
参见