我想在 iOS 应用程序中获取 iOS 设备的以下详细信息。我在谷歌上搜索过,但我没有得到任何关于这些的想法:
- 格式化空间
- 已用空间
- 可用空间
我想在 iOS 应用程序中获取 iOS 设备的以下详细信息。我在谷歌上搜索过,但我没有得到任何关于这些的想法:
对 statfs 进行 C 系统调用。
请参阅:https ://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man2/statfs.2.html
这个答案是: 在下载文件之前检查 iphone 设备上的足够空间
对于总空间和可用空间,此方法将返回 freeSpace
- (uint64_t)freeDiskspace{
uint64_t totalSpace = 0;
uint64_t totalFreeSpace = 0;
__autoreleasing NSError *error = nil;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSDictionary *dictionary = [[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject] error: &error];
if (dictionary) {
NSNumber *fileSystemSizeInBytes = [dictionary objectForKey: NSFileSystemSize];
NSNumber *freeFileSystemSizeInBytes = [dictionary objectForKey:NSFileSystemFreeSize];
totalSpace = [fileSystemSizeInBytes unsignedLongLongValue];
totalFreeSpace = [freeFileSystemSizeInBytes unsignedLongLongValue];
NSLog(@"Memory Capacity of %llu MiB with %llu MiB Free memory available.", ((totalSpace/1024ll)/1024ll), ((totalFreeSpace/1024ll)/1024ll));
}
else {
NSLog(@"Error Obtaining System Memory Info: Domain = %@, Code = %d", [error domain], [error code]);
}
return totalFreeSpace;
}
您可以使用uidevice-extension获得这些 您需要的是以下功能:
- (NSNumber *) totalDiskSpace;
- (NSNumber *) freeDiskSpace;
来自 UIDevice-Hardware.h
你也可以使用 NSFileManager 和方法
- (NSDictionary *)attributesOfFileSystemForPath:(NSString *)path error:(NSError **)error
在您要发送数据的路径上。此方法使用 statfs (在其他答案中提到)。