Пример #1
0
 private void ClearCorePatch()
 {
     Debug.Log("清理所有core补丁");
     try
     {
         DirectoryUtil.DeleteIfExist(this.GetResPatchDir(UpdateManager.ResPathDir.corePatch));
     }
     catch (Exception ex)
     {
         Debug.LogException(ex);
     }
 }
Пример #2
0
 private void ClearExtend()
 {
     Debug.Log("清理所有ExtendZip");
     try
     {
         DirectoryUtil.DeleteIfExist(this.GetResPatchDir(UpdateManager.ResPathDir.extend));
     }
     catch (Exception ex)
     {
         Debug.LogException(ex);
     }
 }
Пример #3
0
 private void ClearApkPatch()
 {
     Debug.Log("清理所有apk补丁");
     try
     {
         DirectoryUtil.DeleteIfExist(PathSystem.ApkPatchDir);
     }
     catch (Exception ex)
     {
         Debug.LogException(ex);
     }
 }
Пример #4
0
 private void ClearPatch()
 {
     Debug.Log("清理所有补丁");
     DirectoryUtil.DeleteIfExist(PathSystem.ApkPatchDir);
 }
Пример #5
0
 private void ClearApk()
 {
     Debug.Log("清理所有apk");
     DirectoryUtil.DeleteIfExist(PathSystem.ApkDir);
 }