/***************************************************************************** * UIDevice+VLC * VLC for iOS ***************************************************************************** * Copyright (c) 2013-2017 VideoLAN. All rights reserved. * $Id$ * * Authors: Felix Paul Kühne * Carola Nitz * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import "UIDevice+VLC.h" #import // for sysctlbyname #import @implementation UIDevice (VLC) - (NSNumber *)VLCFreeDiskSpace { NSNumber *totalSpace; NSNumber *totalFreeSpace; NSError *error = nil; NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSDictionary *dictionary = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject] error: &error]; if (!error) { totalSpace = [dictionary objectForKey:NSFileSystemSize]; totalFreeSpace = [dictionary objectForKey:NSFileSystemFreeSize]; NSString *totalSize = [NSByteCountFormatter stringFromByteCount:[totalSpace longLongValue] countStyle:NSByteCountFormatterCountStyleFile]; NSString *totalFreeSize = [NSByteCountFormatter stringFromByteCount:[totalFreeSpace longLongValue] countStyle:NSByteCountFormatterCountStyleFile]; APLog(@"Memory Capacity of %@ with %@ Free memory available.", totalSize, totalFreeSize); } else APLog(@"Error Obtaining System Memory Info: Domain = %@, Code = %ld", [error domain], (long)[error code]); return totalFreeSpace; } - (BOOL)VLCHasExternalDisplay { return ([[UIScreen screens] count] > 1); } @end