新浪微博客户端(62)-计算某个文件或文件夹的大小

Posted 夜行过客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新浪微博客户端(62)-计算某个文件或文件夹的大小相关的知识,希望对你有一定的参考价值。

 

NSString+Extension.m

/**
 * 计算当前路径字符串指定的文件/文件夹大小
 * 文件/文件夹大小,-1代表指定的文件或文件夹路径不存在,以字节为单位
 */
- (NSInteger)fileSize {

    NSFileManager *mgr = [NSFileManager defaultManager];
    BOOL dir = NO;
    BOOL exists = [mgr fileExistsAtPath:self isDirectory:&dir];
    if (!exists) {
        return -1;
    }
    
    if (dir) { // 目录
        NSInteger totalByteSize = 0;
        NSArray *subPaths = [mgr subpathsAtPath:self]; // 单个文件路径
        for (NSString *subPath in subPaths) {
            // 计算完整路径下的文件大小,并累加
            totalByteSize += [[mgr attributesOfItemAtPath:[self stringByAppendingPathComponent:subPath] error:nil][NSFileSize] integerValue];
        }
        return totalByteSize;
    } else { // 文件
        return [[mgr attributesOfItemAtPath:self error:nil][NSFileSize] integerValue] ;
    }
    
}

 

移除某个文件或文件夹:

// 清除缓存
- (void)clearCache {
    
    NSString *cachePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
    
    NSFileManager *mgr = [NSFileManager defaultManager];
    [mgr removeItemAtPath:cachePath error:nil];
    
}

 

 

最终效果:

 

 

以上是关于新浪微博客户端(62)-计算某个文件或文件夹的大小的主要内容,如果未能解决你的问题,请参考以下文章

新浪微博客户端(23)-计算Cell内控件的frame

新浪微博gif图片最大有效显示尺寸是多少

新浪微博客户端(39)-从图库或相机中选择图片

新浪微博客户端(30)-制作微博中的九宫格相册图片

安卓手机怎么在新浪微博上传动图

新浪微博平台自动化运维演进之路