我有一个包含在NSString中的文件路径.有没有办法获得其文件大小?
这个班轮可以帮助人们:
unsigned long long fileSize = [[[NSFileManager defaultManager] attributesOfItemAtPath:someFilePath error:nil] fileSize];
这将以字节为单位返回文件大小.
请记住,自Mac OS X v10.5起,不推荐使用fileAttributesAtPath:traverseLink:.attributesOfItemAtPath:error:
相反,请使用相同网址描述的相同内容.
有一点需要注意,我是Objective-C的新手,而且我忽略了调用时可能出现的错误attributesOfItemAtPath:error:
,你可以执行以下操作:
NSString *yourPath = @"Whatever.txt"; NSFileManager *man = [NSFileManager defaultManager]; NSDictionary *attrs = [man attributesOfItemAtPath: yourPath error: NULL]; UInt32 result = [attrs fileSize];
如果有人需要Swift版本:
let attr: NSDictionary = try! NSFileManager.defaultManager().attributesOfItemAtPath(path) print(attr.fileSize())
CPU使用attributesOfItemAtPath引发:错误:
您应该使用stat.
#importstruct stat stat1; if( stat([inFilePath fileSystemRepresentation], &stat1) ) { // something is wrong } long long size = stat1.st_size; printf("Size: %lld\n", stat1.st_size);
如果只想使用带字节的文件大小,
unsigned long long fileSize = [[[NSFileManager defaultManager] attributesOfItemAtPath:yourAssetPath error:nil] fileSize];
NSByteCountFormatter文件大小的字符串转换(来自字节)具有精确的KB,MB,GB ...它的返回像120 MB
或120 KB
NSError *error = nil; NSDictionary *attrs = [[NSFileManager defaultManager] attributesOfItemAtPath:yourAssetPath error:&error]; if (attrs) { NSString *string = [NSByteCountFormatter stringFromByteCount:fileSize countStyle:NSByteCountFormatterCountStyleBinary]; NSLog(@"%@", string); }
根据Oded Ben Dov的回答,我宁愿在这里使用一个对象:
NSNumber * mySize = [NSNumber numberWithUnsignedLongLong:[[[NSFileManager defaultManager] attributesOfItemAtPath:someFilePath error:nil] fileSize]];