zoukankan      html  css  js  c++  java
  • 清除缓存的方法(计算)

    1.计算

    - (float)checkTmpSize
    {
        float totalSize = 0;
        NSDirectoryEnumerator *fileEnumerator = [[NSFileManager defaultManager] enumeratorAtPath:diskCachePath];
        for (NSString *fileName in fileEnumerator)
        {
            NSString *filePath = [diskCachePath stringByAppendingPathComponent:fileName];
    
            NSDictionary *attrs = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath error:nil];
    
            unsigned long long length = [attrs fileSize];
    
            totalSize += length / 1024.0 / 1024.0;
        }
    //    NSLog(@"tmp size is %.2f",totalSize);
    
        return totalSize;
    }

    新版的SDImageCache类,已增加此方法

    [[SDImageCache sharedImageCache] getSize];

    2.设置里清除缓存

    #pragma 清理缓存图片
    
    - (void)clearTmpPics
    {
        [[SDImageCache sharedImageCache] clearDisk];
    
    //    [[SDImageCache sharedImageCache] clearMemory];//可有可无
    
        DLog(@"clear disk");    
    
        float tmpSize = [[SDImageCache sharedImageCache] checkTmpSize];
    
        NSString *clearCacheName = tmpSize >= 1 ? [NSString stringWithFormat:@"清理缓存(%.2fM)",tmpSize] : [NSString stringWithFormat:@"清理缓存(%.2fK)",tmpSize * 1024];
    
        [configDataArray replaceObjectAtIndex:2 withObject:clearCacheName];
    
        [configTableView reloadData];
    }
  • 相关阅读:
    Matlab norm 用法小记
    C51存储器类型 MCS51单片机物理存储器区域
    MATLAB 中NORM运用
    Matlab norm 用法小记
    C51存储器类型 MCS51单片机物理存储器区域
    MATLAB 中NORM运用
    poj2031
    poj1039
    poj3122
    poj3980
  • 原文地址:https://www.cnblogs.com/liaods/p/4805421.html
Copyright © 2011-2022 走看看