美文网首页iOS Developer
iOS沙盒缓存的路径获取,大小计算,删除

iOS沙盒缓存的路径获取,大小计算,删除

作者: 十一遥 | 来源:发表于2017-04-14 14:16 被阅读229次

1.常规文件获取删除

2.SDWebImage获取删除

1.1沙盒路径获取

    //NSDocumentDirectory、NSCachesDirectory、NSLibraryDirectory 沙盒的document、caches、library 

    NSArray *pathss = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [pathss objectAtIndex:0];
    
    NSString *imgCachePath = [NSString stringWithFormat:@"%@/Caches/default/com.hackemist.SDWebImageCache.default",documentsDirectory];
    
    if ([fileManager fileExistsAtPath:imgCachePath]) {
        
               NSLog(@"用户文件已存在");
        
       NSString *STR = [self getCacheSizeWithFilePath:imgCachePath];
       deleteCachesImgValue.text = STR;

    }else {
               NSLog(@"用户文件不存在");

        deleteCachesImgValue.text = @"0 K";
        
    }
    

1.2缓存大小计算

- (NSString *)getCacheSizeWithFilePath:(NSString *)path{
    
    //调试
#ifdef DEBUG
    //如果文件夹不存在或者不是一个文件夹那么就抛出一个异常
    //抛出异常会导致程序闪退,所以只在调试阶段抛出,发布阶段不要再抛了,不然极度影响用户体验
    BOOL isDirectory = NO;
    BOOL isExist = [fileManager fileExistsAtPath:path isDirectory:&isDirectory];
    if (!isExist || !isDirectory)
    {
        NSException *exception = [NSException exceptionWithName:@"fileError" reason:@"please check your filePath!" userInfo:nil];
        [exception raise];
        
    }
//    NSLog(@"debug");
    //发布
#else
//    NSLog(@"post");
#endif
    
    //获取“path”文件夹下面的所有文件
    NSArray *subpathArray= [fileManager subpathsAtPath:path];
    
    NSString *filePath = nil;
    NSInteger totleSize=0;
    
    for (NSString *subpath in subpathArray)
    {
        //拼接每一个文件的全路径
        filePath =[path stringByAppendingPathComponent:subpath];
                
        //isDirectory,是否是文件夹,默认不是
        BOOL isDirectory = NO;
        
        //isExist,判断文件是否存在
        BOOL isExist = [fileManager fileExistsAtPath:filePath isDirectory:&isDirectory];
        
        if (!isExist || isDirectory || [filePath containsString:@".DS"]) continue;

        NSDictionary *dict=   [fileManager attributesOfItemAtPath:filePath error:nil];
        
        NSInteger size=[dict[@"NSFileSize"] integerValue];
        totleSize+=size;
    }
    
    //将文件夹大小转换为 M/KB/B
    NSString *totleStr = nil;
    
    if (totleSize > 1000 * 1000)
    {
        totleStr = [NSString stringWithFormat:@"%.1fM",totleSize / 1000.0f /1000.0f];
    }else if (totleSize > 1000)
    {
        totleStr = [NSString stringWithFormat:@"%.1fKB",totleSize / 1000.0f ];
        
    }else
    {
        totleStr = [NSString stringWithFormat:@"%.1fB",totleSize / 1.0f];
    }
    
    return totleStr;
    
}

1.3缓存清理

//删除图片缓存方法
- (void)deleteimages{
    
    NSArray *pathss = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
    
    NSString *documentsDirectory = [pathss objectAtIndex:0];
    
    NSString *imgCachePath = [NSString stringWithFormat:@"%@/Caches/default/com.hackemist.SDWebImageCache.default",documentsDirectory];
    
    
    BOOL res=[fileManager removeItemAtPath:imgCachePath error:nil];
    
    if (res) {
        
                NSLog(@"文件删除成功");

    }else{
                NSLog(@"文件删除失败");
    }
 
}

2.1SD获取、计算

        NSUInteger intg = [[SDImageCache sharedImageCache] getSize];
        NSString * currentVolum = [NSString stringWithFormat:@"%@",[self fileSizeWithInterge:intg]];

2.2SD清理

    [[[SDWebImageManager sharedManager] imageCache] clearMemory]; //内存
    [[[SDWebImageManager sharedManager] imageCache] clearDisk]; //磁盘

相关文章

  • iOS沙盒缓存的路径获取,大小计算,删除

    1.常规文件获取删除 2.SDWebImage获取删除 1.1沙盒路径获取 1.2缓存大小计算 1.3缓存清理 2...

  • 清除图片缓存

    获取缓存大小 1.找到沙盒路径 2.拼接路径 拼接路径会自动加/,拼接字符串不会//拼接路径NSString *f...

  • iOS开发 _计算缓存大小/清理

    1.获取路径: 2.计算目录大小 3.根据路径删除文件 4.清除缓存按钮的点击事件

  • Swift获取文件大小,清除缓存,删除沙盒里的文件

    先看OC获取文件大小,清除缓存,删除沙盒里文件的代码 再来看Swift获取文件大小,清除缓存,删除沙盒里文件的代码

  • cell 图片缓存策略

    无沙盒路径缓存策略 有沙盒路径缓存策略

  • iOS 文件操作

    iOS文件(沙盒目录,文件创建、移动、复制等) 目录获取获取沙盒的主目录路径: (NSString *)homeD...

  • iOS常用方法——获取沙盒中的几个目录路径

    开发中常遇到需要缓存的需求,缓存的时候我们就需要有一个路径,下面的代码是获取沙盒中的路径的方法: //获取沙盒主目...

  • iOS开发之沙盒机制

    沙盒 iOS系统,每个应用都有自己的沙盒,每个沙盒都是相互独立的,不能互相访问。 获取沙盒路径的代码: NSHom...

  • OC - 沙盒

    导读: 一、什么是沙盒机制 二、沙盒的特点 三、沙盒的结构组成 四、获取沙盒目录路径 一、什么是沙盒机制 iOS中...

  • Objective-C沙盒结构

    导读: 一、什么是沙盒机制二、沙盒的特点三、沙盒的结构组成四、获取沙盒目录路径 一、什么是沙盒机制 iOS中的沙盒...

网友评论

    本文标题:iOS沙盒缓存的路径获取,大小计算,删除

    本文链接:https://www.haomeiwen.com/subject/eamwattx.html