0

可能重复:
如何检测 iPhone/iPad 设备上的总可用/可用磁盘空间?

我想在 iOS 应用程序中获取 iOS 设备的以下详细信息。我在谷歌上搜索过,但我没有得到任何关于这些的想法:

  1. 格式化空间
  2. 已用空间
  3. 可用空间
4

4 回答 4

1

对 statfs 进行 C 系统调用。

请参阅:https ://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man2/statfs.2.html

这个答案是: 在下载文件之前检查 iphone 设备上的足够空间

于 2012-12-24T12:06:58.980 回答
1

对于总空间和可用空间,此方法将返回 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;
}
于 2012-12-24T12:07:36.343 回答
0

您可以使用uidevice-extension获得这些 您需要的是以下功能:

- (NSNumber *) totalDiskSpace;
- (NSNumber *) freeDiskSpace;

来自 UIDevice-Hardware.h

于 2012-12-24T12:07:15.440 回答
0

你也可以使用 NSFileManager 和方法

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

在您要发送数据的路径上。此方法使用 statfs (在其他答案中提到)。

于 2012-12-24T12:09:22.210 回答