无论如何,我可以查看应用程序以字节为单位创建的文件大小,然后存储该号码以便以后使用?或者有什么方法我可以判断一个NSArray中的对象是否为空,我已经尝试了所有的东西,但它只是不起作用!
答案 0 :(得分:22)
使用NSFileManager类'方法
- (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error
返回字典中的大小键定义为
NSString * const NSFileSize;
所以举个例子
NSError *error = nil;
NSDictionary *attributes = [[NSFileManager defaultManager]
attributesOfItemAtPath:@"/path/to/file" error:&error];
if (!error) {
NSNumber *size = [attributes objectForKey:NSFileSize];
}