iOS开发-清理缓存功能的实现

1 篇文章 0 订阅

原文:http://www.cheerfulstudy.com/Article?newsid=1072

移动应用在处理网络资源时,一般都会做离线缓存处理,其中以图片缓存最为典型,其中很流行的离线缓存框架为SDWebImage。


但是,离线缓存会占用手机存储空间,所以缓存清理功能基本成为资讯、购物、阅读类app的标配功能。


今天介绍的离线缓存功能的实现,主要分为缓存文件大小的获取、删除缓存文件的实现。


获取缓存文件的大小


由于缓存文件存在沙箱中,我们可以通过NSFileManager API来实现对缓存文件大小的计算。


计算单个文件大小


1
2
3
4
5
6
7
8
+( float )fileSizeAtPath:(NSString *)path{
   NSFileManager *fileManager=[NSFileManager defaultManager];
   if ([fileManager fileExistsAtPath:path]){
     long  long  size=[fileManager attributesOfItemAtPath:path error:nil].fileSize;
     return  size/1024.0/1024.0;
   }
   return  0;
}

计算目录大小


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
+( float )folderSizeAtPath:(NSString *)path{
   NSFileManager *fileManager=[NSFileManager defaultManager];
   float  folderSize;
   if  ([fileManager fileExistsAtPath:path]) {
     NSArray *childerFiles=[fileManager subpathsAtPath:path];
     for  (NSString *fileName in childerFiles) {
       NSString *absolutePath=[path stringByAppendingPathComponent:fileName];
       folderSize +=[FileService fileSizeAtPath:absolutePath];
     }
    //SDWebImage框架自身计算缓存的实现
     folderSize+=[[SDImageCache sharedImageCache] getSize]/1024.0/1024.0;
     return  folderSize;
   }
   return  0;
}

清理缓存文件


同样也是利用NSFileManager API进行文件操作,SDWebImage框架自己实现了清理缓存操作,我们可以直接调用。


1
2
3
4
5
6
7
8
9
10
11
12
+( void )clearCache:(NSString *)path{
   NSFileManager *fileManager=[NSFileManager defaultManager];
   if  ([fileManager fileExistsAtPath:path]) {
     NSArray *childerFiles=[fileManager subpathsAtPath:path];
     for  (NSString *fileName in childerFiles) {
       //如有需要,加入条件,过滤掉不想删除的文件
       NSString *absolutePath=[path stringByAppendingPathComponent:fileName];
       [fileManager removeItemAtPath:absolutePath error:nil];
     }
   }
   [[SDImageCache sharedImageCache] cleanDisk];
}

实现效果:

移动应用在处理网络资源时,一般都会做离线缓存处理,其中以图片缓存最为典型,其中很流行的离线缓存框架为SDWebImage。


但是,离线缓存会占用手机存储空间,所以缓存清理功能基本成为资讯、购物、阅读类app的标配功能。


今天介绍的离线缓存功能的实现,主要分为缓存文件大小的获取、删除缓存文件的实现。


获取缓存文件的大小


由于缓存文件存在沙箱中,我们可以通过NSFileManager API来实现对缓存文件大小的计算。


计算单个文件大小


1
2
3
4
5
6
7
8
+( float )fileSizeAtPath:(NSString *)path{
   NSFileManager *fileManager=[NSFileManager defaultManager];
   if ([fileManager fileExistsAtPath:path]){
     long  long  size=[fileManager attributesOfItemAtPath:path error:nil].fileSize;
     return  size/1024.0/1024.0;
   }
   return  0;
}

计算目录大小


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
+( float )folderSizeAtPath:(NSString *)path{
   NSFileManager *fileManager=[NSFileManager defaultManager];
   float  folderSize;
   if  ([fileManager fileExistsAtPath:path]) {
     NSArray *childerFiles=[fileManager subpathsAtPath:path];
     for  (NSString *fileName in childerFiles) {
       NSString *absolutePath=[path stringByAppendingPathComponent:fileName];
       folderSize +=[FileService fileSizeAtPath:absolutePath];
     }
    //SDWebImage框架自身计算缓存的实现
     folderSize+=[[SDImageCache sharedImageCache] getSize]/1024.0/1024.0;
     return  folderSize;
   }
   return  0;
}

清理缓存文件


同样也是利用NSFileManager API进行文件操作,SDWebImage框架自己实现了清理缓存操作,我们可以直接调用。


1
2
3
4
5
6
7
8
9
10
11
12
+( void )clearCache:(NSString *)path{
   NSFileManager *fileManager=[NSFileManager defaultManager];
   if  ([fileManager fileExistsAtPath:path]) {
     NSArray *childerFiles=[fileManager subpathsAtPath:path];
     for  (NSString *fileName in childerFiles) {
       //如有需要,加入条件,过滤掉不想删除的文件
       NSString *absolutePath=[path stringByAppendingPathComponent:fileName];
       [fileManager removeItemAtPath:absolutePath error:nil];
     }
   }
   [[SDImageCache sharedImageCache] cleanDisk];
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值