欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS 基本文件操作实例详解

程序员文章站 2023-12-19 13:49:46
ios 基本文件操作实例详解 在ios的app沙盒中,documents和library/preferences都会被备份到icloud,因此只适合放置一些记录文件,例...

ios 基本文件操作实例详解

在ios的app沙盒中,documents和library/preferences都会被备份到icloud,因此只适合放置一些记录文件,例如plist、数据库文件。缓存一般放置到library/caches,tmp文件夹会被系统随机清除,不适宜防止数据。

【图片缓存的清除】

在使用sdwebimage时,图片被大量的缓存,有时需要获取缓存的大小以及清除缓存。

要获取缓存大小,使用sdimagecache单例的getsize方法拿到byte为单位的缓存大小,注意计算时按1k=1000计算。

拿到m为单位的文件大小的方法,如下:

double size = [[sdimagecache sharedimagecache] getsize] / 1000.0 / 1000.0; 

要清除缓存,调用cleardisk方法,分为有回调和无回调。

因为清除缓存的时间可能会比较长,因此应该用指示器予以指示。

[[sdimagecache sharedimagecache] cleardiskoncompletion:^{ 
     
  // 清除完毕的处理。 
     
}]; 

【文件夹大小计算】

使用nsfilemanager可以拿到文件的属性,如果文件是目录,拿到的filesize是没有意义的,因为目录的大小需要递归计算,不宜作为一个静态属性。因此只有文件的filesize属性才是文件的大小。

为了计算文件夹的大小,应该递归内部所有文件,还好苹果官方集成了递归方法,通过递归可以拿到所有的目录和所有的文件,只要利用filemanager的方法判断是否是文件,如果是文件则拿到filesize属性累加,就能计算出文件夹的大小,如下:

需要注意的是遍历出来的文件是以caches为根目录的,因此获取属性时应该拼接出全路径。

- (void)filesize{ 
 
  nsfilemanager *manager = [nsfilemanager defaultmanager]; 
   
  nsstring *cachepath = [nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask, yes) lastobject]; 
   
  nsarray *files = [manager subpathsofdirectoryatpath:cachepath error:nil]; // 递归所有子路径 
   
  nsinteger totalsize = 0; 
   
  for (nsstring *filepath in files) { 
    nsstring *path = [cachepath stringbyappendingpathcomponent:filepath]; 
    // 判断是否为文件 
    bool isdir = no; 
    [manager fileexistsatpath:path isdirectory:&isdir]; 
    if (!isdir) { 
      nsdictionary *attrs = [manager attributesofitematpath:path error:nil]; 
      totalsize += [attrs[nsfilesize] integervalue]; 
    } 
  } 
   
  nslog(@"%d",totalsize); 
   
} 


感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

上一篇:

下一篇: