• 转 这种方法可以免去自己计算大文件md5 的麻烦


    using System.Collections;
    using System.Collections.Generic;
    using UnityEngine;
    using UnityEditor;
    using System.IO;
    using System;
    using System.Text;

    public class Md5 : Editor
    {
    [MenuItem("Md5/Generate Md5")]
    public static void Generate_Md5()
    {
    //创建一个controller
    //AnimatorController mAnimatorController = AnimatorController.CreateAnimatorControllerAtPath("Assets/Resources/Animator/ani.controller");
    //EditorUtility.DisplayDialog("Select Texture", "You must select a texture first!", "OK");
    string path = EditorUtility.OpenFolderPanel("Choose Directory Path Plz!!!","","");
    RecursiveDirectory(path);
    }
    static void RecursiveDirectory(string path)
    {
    if (Directory.Exists(path))
    {
    DirectoryInfo dInfo = new DirectoryInfo(path);
    FileInfo[] files = dInfo.GetFiles("*", SearchOption.AllDirectories);
    Debug.Log("RecursiveDirectory file length " + files.Length);
    for (int i = 0; i < files.Length; ++i)
    {
    if (files[i].Name.EndsWith(".meta"))
    continue;
    Debug.Log("RecursiveDirectory Files Name " + files[i].Name + " Md5: "+ GetMd5(files[i].FullName));
    }
    }
    }
    static string GetMd5(string path)
    {
    try
    {
    FileStream fs = new FileStream(path, FileMode.Open);
    System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
    byte[] retVal = md5.ComputeHash(fs);
    fs.Close();
    System.Text.StringBuilder sb = new StringBuilder();
    for (int i = 0; i < retVal.Length; ++i)
    {
    sb.Append(retVal[i].ToString("x2"));
    }
    return sb.ToString();
    }
    catch (Exception ex)
    {
    throw new Exception("GetMd5 Exception error: " + ex.Message);
    }
    }
    }

  • 相关阅读:
    码云安装SSH私钥步骤
    关于在Python3中:字典在迭代过程中,字典的长度是不允许改变的
    Selenium ChromeDriver与Chrome版本映射表(更新到v78)
    web driver下载地址(selenium-3.141_浏览器版本对应)
    Python报错pip超时
    LoginRequiredMixin类
    pycharm断点调试django
    js克隆
    索引
    java8date
  • 原文地址:https://www.cnblogs.com/rexzhao/p/7590526.html
Copyright © 2020-2023  润新知