沙盒文件管理,简单易用的沙盒管理文件。

#pragma mark - 获取沙盒目录 -

/**
 获取沙盒Document目录

 @return Document目录
 */
+ (NSString *)getDocumentDirectory;

/**
 获取沙盒Library目录
 
 @return Library目录
 */
+ (NSString *)getLibraryDirectory;

/**
 获取沙盒Library/Caches目录
 
 @return Library/Caches目录
 */
+ (NSString *)getCachesDirectory;

/**
 获取沙盒Preference目录
 
 @return Preference目录
 */
+ (NSString *)getPreferenceDirectory;

/**
 获取沙盒Tmp目录
 
 @return Tmp目录
 */
+ (NSString *)getTmpDirectory;

#pragma mark - 清除沙盒目录文件内容 -

/**
 根据路径返回目录或文件的大小

 @param path 文件目录
 
 @return 目录文件大小
 */
+ (CGFloat)sizeWithFilePath:(NSString *)path;

/**
 得到指定目录下的所有文件

 @param dirPath 指定目录

 @return 所有文件
 */
+ (NSArray *)getAllFileNames:(NSString *)dirPath;


/**
 删除指定目录或文件

 @param path 指定目录或文件

 @return 删除结果
 */
+ (BOOL)clearCachesWithFilePath:(NSString *)path;

/**
 清空指定目录下文件

 @param dirPath 指定目录

 @return 清除结果
 */
+ (BOOL)clearCachesFromDirectoryPath:(NSString *)dirPath;


/**
 清理图片缓存

 @return 图片缓存
 */
+ (void)clearCachesImage;


/**
 清理网页缓存

 @return 网页缓存
 */
+ (BOOL)clearCachesWeb;


/**
 清理信息类
 
 @return 信息类缓存
 */
+ (BOOL)clearCachesInfo;

/** 清理所有缓存 */
+ (void)clearAllCaches;

/**
 获得缓存大小
 
 @return 缓存大小
 */
+ (NSUInteger)getCachesSize;

/**
 获取缓存大小字符串

 @return 缓存大小字符串
 */
+ (NSString *)getCachesSizeString;

/** 创建cache/User文件夹 */
+ (void)createUserCacheFile;

/** 获取cache/User文件夹路径 */
+ (NSString *)getCacheUserPath;

#pragma mark - 缓存归档与解档 -

/** 归档群组列表 */
+ (void)archiveGroupList:(NSMutableArray *)groupArr;

/** 归档活动列表 */
+ (void)archiveActivityList:(NSMutableArray *)actArr;

/** 载入群组列表缓存 */
+ (NSMutableArray *)unarchiveGroupList;

/** 载入活动列表缓存 */
+ (NSMutableArray *)unachiveActivityList;

单例,方面快捷。

+ (NSFileManager *)initFileManager {
    NSFileManager *manager;
    if (manager == nil) {
       manager = [NSFileManager defaultManager];
    }
    return manager;
}


具体操作

/** 获取沙盒Document目录 */
+ (NSString *)getDocumentDirectory {
    return NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
}

/** 获取沙盒Liabrary目录 */
+ (NSString *)getLibraryDirectory {
    return NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES)[0];
}

/** 获取沙盒Library/Caches目录 */
+ (NSString *)getCachesDirectory {
    return NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
}

/** 获取沙盒Preference目录 */
+ (NSString *)getPreferenceDirectory {
    return NSSearchPathForDirectoriesInDomains(NSPreferencePanesDirectory, NSUserDomainMask, YES)[0];
}

/** 获取沙盒Tmp目录 */
+ (NSString *)getTmpDirectory {
    return NSTemporaryDirectory();
}

#pragma mark - 清除沙盒目录文件内容 -

/** 根据路径返回目录或文件的大小 */
+ (CGFloat)sizeWithFilePath:(NSString *)path {
    // 1.获得文件管理权限
    NSFileManager *manager = [self initFileManager];
    
    // 2.检测路径合理性
    BOOL directory = NO;
    BOOL exist = [manager fileExistsAtPath:path isDirectory:&directory];
    if (!exist) return 0;

    // 3.判断是否为文件夹
    // 文件夹
    if (directory) {
        // 这个方法能获得这个文件夹下面的所有子路径(直接\间接子路径)
        NSArray *subPaths = [manager subpathsAtPath:path];
        int totalSize = 0;
        for (NSString *subPath in subPaths) {
            NSString *fullSubPath = [path stringByAppendingPathComponent:subPath]; // 拼出子目录的全路径
            
            BOOL directory = NO;
            [manager fileExistsAtPath:fullSubPath isDirectory:&directory];
            
            // 子路径是个文件
            if (!directory) {
                NSDictionary *attrs = [manager attributesOfItemAtPath:fullSubPath error:nil];
                totalSize += [attrs[NSFileSize] intValue];
            }
        }
        return totalSize / (1024*1024.0);
    }
    
    // 文件
    else  {
        NSDictionary *attrs = [manager attributesOfItemAtPath:path error:nil];
        return [attrs[NSFileSize] intValue] / (1024*1024.0);
    }
}

/** 得到指定目录下的所有文件 */

+ (NSArray *)getAllFileNames:(NSString *)dirPath {
    NSArray *files = [[self initFileManager] subpathsOfDirectoryAtPath:dirPath error:nil];
    return files;
}

/** 删除指定目录或文件 */
+ (BOOL)clearCachesWithFilePath:(NSString *)path {
    return [[self initFileManager] removeItemAtPath:path error:nil];
}

/** 清空指定目录下文件 */
+ (BOOL)clearCachesFromDirectoryPath:(NSString *)dirPath {
    // 获得全部文件数组
    NSArray *fileArr = [self getAllFileNames:dirPath];
    BOOL flag = NO;
    for (NSString *fileName in fileArr) {
        NSString *filePath = [dirPath stringByAppendingPathComponent:fileName];
        flag = [self clearCachesWithFilePath:filePath];
        if (!flag) {
            break;
        }
    }
    return flag;
}

/** 清理图片缓存 */
+ (void)clearCachesImage {
   SDImageCache *sdCache = [SDImageCache sharedImageCache];
   [sdCache clearDisk];
}

/** 清理网页缓存 */
+ (BOOL)clearCachesWeb {
    NSString *path = [[self getCachesDirectory] stringByAppendingPathComponent:FILE_CACHE_WebKit];
    return [self clearCachesWithFilePath:path];
}

/** 清理信息类缓存 */
+ (BOOL)clearCachesInfo {
    return [self clearCachesWithFilePath:[self getCacheUserPath]];
}

/** 清理所有缓存 */
+ (void)clearAllCaches {
    [self clearCachesImage];
    [self clearCachesWeb];
    [self clearCachesInfo];
}

/** 获取缓存大小 */
+ (NSUInteger)getCachesSize {
    NSUInteger totalSize = 0;
    // 1.动态草稿
    
    // 2.SDWebImage缓存大小
    SDImageCache *sdCache = [SDImageCache sharedImageCache];
    NSUInteger sdCacheSize = [sdCache getSize];
    
    // 3.用户浏览信息列表缓存
    NSArray *filesArr = [self getAllFileNames:[self getCacheUserPath]];
    NSUInteger infoSize = 0;
    for (NSString *filePath in filesArr) {
        NSString *filePathAppend = [[self getCacheUserPath] stringByAppendingPathComponent:filePath];
        NSData *data = [NSData dataWithContentsOfFile:filePathAppend];
        infoSize += data.length;
    }
    
    // 4.WebKit缓存
    NSString *webKitPath = [[self getCachesDirectory] stringByAppendingPathComponent:FILE_CACHE_WebKit];
    NSArray *webFileArr = [self getAllFileNames:webKitPath];
    NSUInteger webSize = 0;
    for (NSString *filePath in webFileArr) {
        NSString *filePathAppend = [webKitPath stringByAppendingPathComponent:filePath];
        NSData *data = [NSData dataWithContentsOfFile:filePathAppend];
        webSize += data.length;
    }
    
    totalSize = sdCacheSize + infoSize + webSize;
    
    return totalSize;
}

/** 获取缓存大小字符串 */
+ (NSString *)getCachesSizeString {
    NSUInteger cacheSize =  [self getCachesSize] / 1024 / 1024;
    if (cacheSize == 0) return nil;
    
    NSString *cacheSizeStr = cacheSize >= 1 ? [NSString stringWithFormat:@"%luM", (unsigned long)cacheSize] : [NSString stringWithFormat:@"%luK", (unsigned long)cacheSize];
    return cacheSizeStr;
}

/** 创建cache/User文件夹 */
+ (void)createUserCacheFile {
    NSFileManager *fm = [self initFileManager];
    NSString *path = [[self getCachesDirectory] stringByAppendingPathComponent:FILE_CACHE_USER];
    if (![fm fileExistsAtPath:path]) {
        [fm createDirectoryAtPath:path withIntermediateDirectories:YES attributes:nil error:nil];
    } else
        NSLog(@"File path Cache/User has been existed !");
}

/** 获取cache/User文件夹路径 */
+ (NSString *)getCacheUserPath {
    NSString *userPath = [[self getCachesDirectory] stringByAppendingPathComponent:FILE_CACHE_USER];
    return userPath;
}

#pragma mark - 缓存归档与解档 -

/** 归档群组列表 */
+ (void)archiveGroupList:(NSMutableArray *)groupArr {
    [self createUserCacheFile];
    NSString *path = [[LZSandBoxManager getCacheUserPath] stringByAppendingPathComponent:FILE_Group_list];
    [NSKeyedArchiver archiveRootObject:groupArr toFile:path];
}

/** 归档活动列表 */
+ (void)archiveActivityList:(NSMutableArray *)actArr {
    [self createUserCacheFile];
    NSString *path = [[LZSandBoxManager getCacheUserPath] stringByAppendingPathComponent:FILE_Activity_list];
    [NSKeyedArchiver archiveRootObject:actArr toFile:path];
}

/** 载入群组列表缓存 */
+ (NSMutableArray *)unarchiveGroupList {
    NSString *path = [[LZSandBoxManager getCacheUserPath] stringByAppendingPathComponent:FILE_Group_list];
    NSMutableArray *array = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
    return array;
}

/** 载入活动列表缓存 */
+ (NSMutableArray *)unachiveActivityList {
    NSString *path = [[LZSandBoxManager getCacheUserPath] stringByAppendingPathComponent:FILE_Activity_list];
    NSMutableArray *array = [NSKeyedUnarchiver unarchiveObjectWithFile:path];
    return array;
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,009评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,808评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,891评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,283评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,285评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,409评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,809评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,487评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,680评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,499评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,548评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,268评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,815评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,872评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,102评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,683评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,253评论 2 341

推荐阅读更多精彩内容