标签:
首先要了解怎么去拿到沙盒中的Cache文件路径
NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)[0];
这个方法可以拿到沙盒中的Cache路径 缓存一般都会在这个文件夹中。
// 获取文件夹尺寸
+ (NSInteger)getDirectorySize:(NSString *)directoryPath
{
// 获取文件管理者
NSFileManager *mgr = [NSFileManager defaultManager];
BOOL isDirectory;
BOOL isExist = [mgr fileExistsAtPath:directoryPath isDirectory:&isDirectory];
if (!isExist || !isDirectory) {
// 报错:抛异常
NSException *excp = [NSException exceptionWithName:@"filePathError" reason:@"传错,必须传文件夹路径" userInfo:nil];
[excp raise];
}
/*
获取这个文件夹中所有文件路径,然后累加 = 文件夹的尺寸
*/
// 获取文件夹下所有的文件
NSArray *subpaths = [mgr subpathsAtPath:directoryPath];
NSInteger totalSize = 0;
for (NSString *subpath in subpaths) {
// 拼接文件全路径
NSString *filePath = [directoryPath stringByAppendingPathComponent:subpath];
// 排除文件夹
BOOL isDirectory;
BOOL isExist = [mgr fileExistsAtPath:filePath isDirectory:&isDirectory];
if (!isExist || isDirectory) continue;
// 隐藏文件
if ([filePath containsString:@".DS"]) continue;
// 指定路径获取这个路径的属性
// attributesOfItemAtPath:只能获取文件属性
NSDictionary *attr = [mgr attributesOfItemAtPath:filePath error:nil];
NSInteger size = [attr fileSize];
totalSize += size;
}
return totalSize;
}
//清除缓存
+ (void)removeDirectoryPath:(NSString *)directoryPath(Cache路径)
{
NSFileManager *mgr = [NSFileManager defaultManager];
BOOL isDirectory;//判断是否是文件夹
//判断是否路径是否正确
BOOL isExist = [mgr fileExistsAtPath:directoryPath isDirectory:&isDirectory];
// 看看两个条件是否成立
if (!isExist || !isDirectory) {
NSException *excp = [NSException exceptionWithName:@"filePathError" reason:@"传错,必须传文件夹路径" userInfo:nil];
[excp raise];
}
//拿到这个路径的子路径全部的文件夹
NSArray *subpaths = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:directoryPath error:nil];
//遍历文件夹
for (NSString *subPath in subpaths) {
NSString *filePath = [directoryPath stringByAppendingPathComponent:subPath];
//移除文件的所有文件
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
}
}
如何知道缓存的大小,并且怎样清除缓存 -----ios
标签:
原文地址:http://www.cnblogs.com/beNabenen/p/5410727.html