Procházet zdrojové kódy

1.清理音频播放缓存

huangxiaodong před 1 rokem
rodič
revize
671e1aae78

+ 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];
 }