三国卡牌客户端基础资源仓库
hch
9 天以前 fcce9ab0e54e4580569ba4ed5be0f4e3ba4d37fa
Assets/Launch/Common/AssetVersion.cs
@@ -56,7 +56,7 @@
        //checkList 用于外部检查文件下载后是否一致,不包含没有文件的情况
        public bool CheckLocalFileValid(List<bool> checkList = null)
        {
            string path = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, m_RelativePath);
            string path = StringUtility.Concat(ResourcesPath.Instance.ExternalStorePath, m_RelativePath);
            var fileInfo = new FileInfo(path);
            if (!fileInfo.Exists)
@@ -92,7 +92,7 @@
        // 存在则比较
        public bool CheckLocalFileValid(AssetVersion otherAssetInfo)
        {
            string path = StringUtility.Contact(ResourcesPath.Instance.ExternalStorePath, m_RelativePath);
            string path = StringUtility.Concat(ResourcesPath.Instance.ExternalStorePath, m_RelativePath);
            if (!File.Exists(path))
            {