In my app i have to upload image or video which is below 10 MB size to the server. So i need to check the size of the image or video selected from image picker controller before uploading it to the server. i have been searching for the answer since 2 days. can anybody help me in this regard, thanks in advance. I have written like
NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* fullPathToFile = [[paths objectAtIndex:0] stringByAppendingPathComponent:fileName];
NSLog(@"fullPathToFile:%@", fullPathToFile);
NSError *error = nil;
NSDictionary *attributes = [[NSFileManager defaultManager]attributesOfItemAtPath:fullPathToFile error:&error];
if (!error)
{
NSNumber *size = [attributes objectForKey:NSFileSize];
NSLog(@"File size: %@", size);
}
but it returning null.