码迷,mamicode.com
首页 > 其他好文 > 详细

计算文件夹下文件的总大小

时间:2015-08-26 15:27:48      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

-(float)fileSizeForDir:(NSString*)path//计算文件夹下文件的总大小
{
     
    NSFileManager *fileManager = [[NSFileManager alloc] init];
    float size =0;
    NSArray* array = [fileManager contentsOfDirectoryAtPath:path error:nil];
    for(int i = 0; i<[array count]; i++)
    {
        NSString *fullPath = [path stringByAppendingPathComponent:[array objectAtIndex:i]];
         
        BOOL isDir;
        if ( !([fileManager fileExistsAtPath:fullPath isDirectory:&isDir] && isDir) )
        {
            NSDictionary *fileAttributeDic=[fileManager attributesOfItemAtPath:fullPath error:nil];
            size+= fileAttributeDic.fileSize/ 1024.0/1024.0;
        }
        else
        {
            [self fileSizeForDir:fullPath];
        }
    }
    han = han + size;
    return size;
}

计算文件夹下文件的总大小

标签:

原文地址:http://www.cnblogs.com/zhanghuifeng/p/4760312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!