从SDWebImage的getSize方法仿写清除缓存方法

SDWebImage中获取文件大小的方法:

#pragma mark - Cache Info

- (NSUInteger)getSize {
    __block NSUInteger size = 0;
    dispatch_sync(self.ioQueue, ^{
        NSDirectoryEnumerator *fileEnumerator = [_fileManager enumeratorAtPath:self.diskCachePath];
        for (NSString *fileName in fileEnumerator) {
            NSString *filePath = [self.diskCachePath stringByAppendingPathComponent:fileName];
            NSDictionary *attrs = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath error:nil];
            size += [attrs fileSize];
        }
    });
    return size;
}

仿写getSize方法:

#import "SettingViewController.h"
#import 

static NSString *const reuseIdentifier = @"reuseIdentifier" ;

@interface SettingViewController ()

@end

@implementation SettingViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.navigationItem.title = @"清除缓存页" ;
    
    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:reuseIdentifier] ;
    
}

#pragma mark - Table view data source
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return 1;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifier];
    
    //计算整个应用的缓存数据:==>沙盒(Cache) ==>获取Cache文件夹的尺寸大小 ;
    cell.textLabel.text = @"清除缓存" ;
    // 1.获取沙盒目录中的Cache文件夹的位置:
    NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject] ;
    [self getFileSize:cachePath] ;
    
    return cell;
}


#pragma mark - 获取缓存大小
- (void)getFileSize:(NSString *)directoryPath {
    //NSFileManager
    //attributesOfItemAtPath:指定文件路径 , 就能获取文件属性:
    //把所有的文件尺寸加起来!
    //获取沙盒目录中的Cache文件夹的位置:
    //NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject] ;
    //在Cache文件夹下找到想要的文件夹位置:
    //NSString *defaultPath = [cachePath stringByAppendingPathComponent:@"default"] ;
    //attributesOfItemAtPath:这个方法只能获取文件的大小 , 不能获取文件夹里所有的文件的大小!所以要遍历求和!
    // 获取文件管理者:
    NSFileManager *manager = [NSFileManager defaultManager] ;
    
    // 获取文件夹下所有的子路径:  让文件管理者去遍历所有的defalutPath下得子路径 ;
    NSArray *subPath = [manager subpathsAtPath:directoryPath] ;
    
    NSInteger totalSize = 0 ;
    for (NSString *filePath in subPath) {
        //获取文件的全路径:
        NSString *holeFilePath = [directoryPath stringByAppendingPathComponent:filePath] ;
        
        //文件的全路径包含:1.所有文件,2.文件夹,3.隐藏文件:
        //判断是否为隐藏文件:
        if ([holeFilePath containsString:@".DS"]) continue ;
        //判断是否为文件夹:
        BOOL isDirectory ;
        //判断是否文件存在,是否是个文件夹?!
        BOOL isExist = [manager fileExistsAtPath:holeFilePath isDirectory:&isDirectory] ;
        //如果文件不存在,或是个文件夹:
        if (!isExist || isDirectory) continue ;
        
        //获取全路径文件属性:
        NSDictionary *attrs = [manager attributesOfItemAtPath:holeFilePath error:nil] ;
        //defaultPath的大小:
        NSInteger fileSize = [attrs fileSize] ;
        //每次遍历每次++ :
        totalSize += fileSize ;
    }
    NSLog(@"%ld" , totalSize) ;
}


@end

愿编程让这个世界更美好

你可能感兴趣的:(从SDWebImage的getSize方法仿写清除缓存方法)