我正在尝试在我的应用程序中包含determines the size of a file的方法,例如:file.txt,file.app,file.png等。我对如何执行此操作有一般的了解,尝试了以下,但我的应用程序崩溃是因为最后的NSLog功能:
NSString *yourPath = @"path/to/file";
NSFileManager *man = [[NSFileManager alloc] init];
NSDictionary *attrs = [man attributesOfItemAtPath: yourPath error: NULL];
UInt32 result = [attrs fileSize];
NSLog(@"Size: @%", result);