vote up 0 vote down star

Is there anyway I can look at the size of a file the application creates in bytes then store that number to use later? OR is there any way I can tell if an object in an NSArray is empty, I've tried everything, but it just doesn't work!

flag

75% accept rate

2 Answers

vote up 3 vote down check

Use NSFileManager class' method

- (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error

The size key in the returned dictionary is defined as

NSString * const NSFileSize;

So for an example

NSError *error = nil;
NSDictionary *attributes = [[NSFileManager defaultManager] 
    attributesOfItemAtPath:@"/path/to/file" error:&error];

if (!error) {
    NSNumber *size = [attributes objectForKey:NSFileSize];
}
link|flag
vote up 0 vote down

is there any way I can tell if an object in an NSArray is empty

Ask the object.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.