Reputation: 393
I have in which I save video file in documents folder it works fine, but I want to get the file size of the saved file, I have searched but did not get result using NSFileManager. Here is the code which I use for saving video. I want to get the file size and show it on UILabel.
NSURL *videoURL = [info objectForKey:UIImagePickerControllerMediaURL];
videoData = [[NSData dataWithContentsOfURL:videoURL] retain];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *dataPath = [documentsDirectory stringByAppendingPathComponent:@"Default Album"];
if (![[NSFileManager defaultManager] fileExistsAtPath:dataPath])
[[NSFileManager defaultManager] createDirectoryAtPath:dataPath withIntermediateDirectories:NO attributes:nil error:nil];
NSString *test = @"test";
videopath = [[[NSString alloc] initWithString:[NSString stringWithFormat:@"%@/%@.mp4", documentsDirectory, test]] autorelease];
BOOL success = [videoData writeToFile:videopath atomically:NO];
NSLog(@"Success: %@", success ? @"YES" : @"NO");
NSURL *movieURL = [NSURL fileURLWithPath:videopath];
AVURLAsset *avUrl = [AVURLAsset assetWithURL:movieURL];
CMTime time1 = [avUrl duration];
int seconds = ceil(time1.value / time1.timescale);
NSString *messageA = [NSString stringWithFormat:@"You have recorded video of duration of %d seconds ", seconds];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:messageA
delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
AVAsset *asset = [AVAsset assetWithURL:movieURL];// url= give your url video here
AVAssetImageGenerator *imageGenerator = [[AVAssetImageGenerator alloc]initWithAsset:asset];
CMTime time = CMTimeMake(1, 5);// it will create the thumbnail after the 5 sec of video
CGImageRef imageRef = [imageGenerator copyCGImageAtTime:time actualTime:NULL error:NULL];
UIImage *thumbnail = [UIImage imageWithCGImage:imageRef];
thumbnailImageView.image = thumbnail;
Upvotes: 8
Views: 14687
Reputation: 3901
Try this to get the file size:
NSDictionary *fileDictionary = [[NSFileManager defaultManager] fileAttributesAtPath:videopath traverseLink:YES];
fileSize = [fileDictionary fileSize];
Doc: https://developer.apple.com/documentation/foundation/nsfilemanager/1557004-fileattributesatpath
Note: this method is deprecated
Upvotes: 12
Reputation: 3826
Use NSFileManager attributesOfItemAtPath:error
https://developer.apple.com/documentation/foundation/nsfilemanager/1410452-attributesofitematpath
It returns an NSDictionary of file attributes and one key it contains is NSFileSize, the size of the file.
Upvotes: 1
Reputation: 15951
Note: Previous answer's method (fileAttributesAtPath:traverseLink:) is deprecated, so use below method (attributesOfItemAtPath:error:)
Objective-C:
NSError* error;
NSDictionary *fileDictionary = [[NSFileManager defaultManager] attributesOfItemAtPath:mediaURL error: &error];
NSNumber *size = [fileDictionary objectForKey:NSFileSize];
Swift:
do
{
let fileDictionary = try FileManager.default.attributesOfItem(atPath: urlString)
let fileSize = fileDictionary[FileAttributeKey.size]
print ("\(fileSize)")
}
catch{}
** this file size in bytes
Upvotes: 14
Reputation: 3289
try this way.
// Get file size
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *filePath = [documentsDirectory stringByAppendingString:[directoryContent objectAtIndex:indexPath.row]];
NSDictionary *fileAttributes = [fileManager fileAttributesAtPath:filePath traverseLink:YES];
if(fileAttributes != nil)
{
NSString *fileSize = [fileAttributes objectForKey:NSFileSize];
[[cell detailTextLabel] setText:[NSString stringWithFormat:@"%@ kb", fileSize]];
NSLog(@"File size: %@ kb", fileSize);
}
Upvotes: 0