有没有办法以编程方式获取diskutil info / | grep "Free Space"
为您提供的相同信息? (出于显而易见的原因,我宁愿有更好的方法来解决这个命令的结果。)
目前我正在使用statfs
;但是,我注意到这个报告的空间并不总是准确的,因为OS X还会在驱动器上放置临时文件,例如Time Machine快照。如果空间不足,这些文件将自动删除,操作系统不会报告这些文件的使用情况。换句话说,statfs
通常会提供比diskutil info
更少的可用空间或查看Finder中的磁盘信息。
答案 0 :(得分:6)
您可以使用popen(3)
:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
FILE *f;
char info[256];
f = popen("/usr/sbin/diskutil info /", "r");
if (f == NULL) {
perror("Failed to run diskutil");
exit(0);
}
while (fgets(info, sizeof(info), f) != NULL) {
printf("%s", info);
}
pclose(f);
return 0;
}
修改强>
抱歉,我没有仔细阅读这个问题。您也可以使用Disk Arbitration Framework。还有一些可能有用的示例代码(FSMegaInfo)。
<强>更新强>
我看了otool -L $(which diskutil)
的输出,看来它正在使用一个名为DiskManagement.framework
的私有框架。在查看class-dump
的输出后,我看到了volumeFreeSpaceForDisk:error:
方法。我从diskutil -info /
和FSMegaInfo FSGetVolumeInfo /
以及我的工具获得的尺寸是:
diskutil:427031642112 Bytes
我的工具:volumeFreeSpaceForDisk: 427031642112
FSMegaInfo:freeBytes = 427031642112 (397 GB)
我还观察到,每次运行其中一个工具时,尺寸都会有所不同(几KB),diskutil
除以1000,FSMegaInfo
除以1024,因此尺寸不同在GB中总是不同的(与df -h
和df -H
和diskutil
- 基数10和基数2相同的原因。
这是我的示例工具:
#import <Foundation/Foundation.h>
#import "DiskManagement.h"
#import <DiskArbitration/DADisk.h>
int main(int argc, char *argv[])
{
int err;
const char * bsdName = "disk0s2";
DASessionRef session;
DADiskRef disk;
CFDictionaryRef descDict;
session = NULL;
disk = NULL;
descDict = NULL;
if (err == 0) {session = DASessionCreate(NULL); if (session == NULL) {err = EINVAL;}}
if (err == 0) {disk = DADiskCreateFromBSDName(NULL, session, bsdName); if (disk == NULL) {err = EINVAL;}}
if (err == 0) {descDict = DADiskCopyDescription(disk); if (descDict == NULL) {err = EINVAL;}}
DMManager *dmMan = [DMManager sharedManager];
NSLog(@"blockSizeForDisk: %@", [dmMan blockSizeForDisk:disk error:nil]);
NSLog(@"totalSizeForDisk: %@", [dmMan totalSizeForDisk:disk error:nil]);
NSLog(@"volumeTotalSizeForDisk: %@", [dmMan volumeTotalSizeForDisk:disk error:nil]);
NSLog(@"volumeFreeSpaceForDisk: %@", [dmMan volumeFreeSpaceForDisk:disk error:nil]);
return 0;
}
您可以通过运行DiskManagement.h
获取class-dump /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/Current/DiskManagement > DiskManagement.h
,然后通过使用-F/System/Library/PrivateFrameworks/
添加私有框架路径并添加-framework
来链接到该框架。
编译:
clang -g tool.m -F/System/Library/PrivateFrameworks/ -framework Foundation -framework DiskArbitration -framework DiskManagement -o tool
<强> UPDATE2:强>
您还可以查看here和here。如果FSMegaInfo
示例不适合您,那么您可以stat
/Volumes/.MobileBackups
并从statfs("/", &stats)
获得的大小减去它的大小。