zoukankan      html  css  js  c++  java
  • iOS清理缓存 2016-04-19

    //计算缓存文件的大小
    - (NSString *)getCacheSize
    {
        //定义变量存储总的缓存大小
        long long sumSize = 0;
       
        //01.获取当前图片缓存路径
        NSString *cacheFilePath = [NSHomeDirectory() stringByAppendingPathComponent:@"Library/Caches"];
       
        //02.创建文件管理对象
        NSFileManager *filemanager = [NSFileManager defaultManager];
       
        //获取当前缓存路径下的所有子路径
        NSArray *subPaths = [filemanager subpathsOfDirectoryAtPath:cacheFilePath error:nil];
       
        //遍历所有子文件
        for (NSString *subPath in subPaths) {
            //1).拼接完整路径
            NSString *filePath = [cacheFilePath stringByAppendingFormat:@"/%@",subPath];
            //2).计算文件的大小
            long long fileSize = [[filemanager attributesOfItemAtPath:filePath error:nil]fileSize];
            //3).加载到文件的大小
            sumSize += fileSize;
        }
        float size_m =((float)sumSize)/(1024*1024);
        return [NSString stringWithFormat:@"%.2fM",size_m];
       
    }

    //清理缓存
    -(void)myClearCacheAction{
        dispatch_async(
                       dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)
                       , ^{
                           NSString *cachPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) objectAtIndex:0];
                           NSArray *files = [[NSFileManager defaultManager] subpathsAtPath:cachPath];
                           NSLog(@"files :%lu",(unsigned long)[files count]);
                           for (NSString *p in files) {
                               NSError *error;
                               NSString *path = [cachPath stringByAppendingPathComponent:p];
                               if ([[NSFileManager defaultManager] fileExistsAtPath:path]) {
                                   [[NSFileManager defaultManager] removeItemAtPath:path error:&error];
                               }
                           }
                           [self performSelectorOnMainThread:@selector(clearCacheSuccess) withObject:nil waitUntilDone:YES];});
    }

    -(void)clearCacheSuccess
    {
        [self hiddenHUD];
        [self showTips:@"清除数据成功!"];
        [self.tableView reloadData];
    }
  • 相关阅读:
    常用的CSS命名规则 (web标准化设计)
    有哪些概率论和数理统计的深入教材可以推荐?
    CV2X国内现状分析
    隐私计算,新能源汽车“安全上路”的“救命稻草”?
    2022年中国车联网行业全景图谱
    2022年十大AI预测:气候独角兽涌现、中美竞争加剧
    OSEK/VDX介绍
    Adaptive Autosar
    基于我国商密算法的车联网5GV2X通信安全可信体系
    行研篇 | 汽车域控制器研究
  • 原文地址:https://www.cnblogs.com/cfl911014/p/5408122.html
Copyright © 2011-2022 走看看