瀏覽代碼

1.清理音频播放缓存

huangxiaodong 1 年之前
父節點
當前提交
671e1aae78
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      创维盒子/双子星云手机/mine/mineViewController.m

+ 6 - 1
创维盒子/双子星云手机/mine/mineViewController.m

@@ -368,7 +368,12 @@
     [uploadFileDataModel bg_deleteAsync:upLoadFile_image_tableName where:where2 complete:^(BOOL isSuccess) {
     }];
     
-    long curTotolSize = (downLoadingSizeBeforeClear - downLoadingSizeAfterClear) + (vide0AllSizeBeforeClear - vide0AllSizeAfterClear) + imageAllSize + clearTotal;
+    //清理音频播放缓存
+    NSString *audioPlayPath = [NSString stringWithFormat:@"%@/%@",DocumentPath,@"playAudioCache"];;
+    long audioPlayAllSize = [iTools folderSizeAtPath:audioPlayPath];
+    [[NSFileManager defaultManager] removeItemAtPath:audioPlayPath error:nil];
+    
+    long curTotolSize = (downLoadingSizeBeforeClear - downLoadingSizeAfterClear) + (vide0AllSizeBeforeClear - vide0AllSizeAfterClear) + imageAllSize + clearTotal + audioPlayAllSize;
     
     [self showClearAllTipBy:curTotolSize];
 }