NSFileManager 获取文件大小
2017-07-27 本文已影响15人
泰克2008
获取文件大小
//文件是否存在
if([[NSFileManager defaultManager] fileExistsAtPath:self.filePath]){
//2.获取文件大小
NSDictionary * attributes = [[NSFileManager defaultManager] attributesOfItemAtPath:self.filePath error:NULL];
//fileSize = [attributes[NSFileSize] longLongValue];
//利用分类方法获取文件大小
fileSize = [attributes fileSize];
}