import UIKit
class CacheTool: NSObject {
/// 计算缓存大小
static var cacheSize: String{
get{
// 路径
let basePath = NSSearchPathForDirectoriesInDomains(FileManager.SearchPathDirectory.cachesDirectory, FileManager.SearchPathDomainMask.userDomainMask, true).first
let fileManager = FileManager.default
// 遍历出所有缓存文件加起来的大小
func caculateCache() -> Float{
var total: Float = 0
if fileManager.fileExists(atPath: basePath!){
let childrenPath = fileManager.subpaths(atPath: basePath!)
if childrenPath != nil{
for path in childrenPath!{
let childPath = basePath!.appending("/").appending(path)
do{
let attr:NSDictionary = try fileManager.attributesOfItem(atPath: childPath) as NSDictionary
let fileSize = attr["NSFileSize"] as! Float
total += fileSize
}catch _{
}
}
}
}
// 缓存文件大小
return total
}
// 调用函数
let totalCache = caculateCache()
return NSString(format: "%.2f MB", totalCache / 1024.0 / 1024.0 ) as String
}
}
/// 清除缓存
///
/// - returns: 是否清理成功
class func clearCache() -> Bool {
var result = true
// 取出cache文件夹目录 缓存文件都在这个目录下
let cachePath = NSSearchPathForDirectoriesInDomains(FileManager.SearchPathDirectory.cachesDirectory, FileManager.SearchPathDomainMask.userDomainMask, true).first
// 取出文件夹下所有文件数组
let fileArr = FileManager.default.subpaths(atPath: cachePath!)
// 遍历删除
for file in fileArr! {
// 拼接文件路径
let path = cachePath?.appending("/\(file)")
if FileManager.default.fileExists(atPath: path!) {
// 循环删除
do {
try FileManager.default.removeItem(atPath: path!)
} catch {
// 删除失败
result = false
}
}
}
return result
}
}
swift 清理缓存
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 地址 http://www.qingpingshan.com/rjbc/swift/167567.html htt...