怎么样df -k
?谷歌也引导我这样做。
在你的 Mac 上diskutil list
。
如果您想弄清楚您需要在c
代码中执行哪些系统调用,请使用strace
来找出它。
假设您可以访问/
根目录的另一种方法使用 Petesh代码和 llolydm代码:
#include <stdlib.h>
#include <mntent.h>
#include <unistd.h>
#include <sys/types.h>
#include <dirent.h>
#include <stdio.h>
void listdir(const char *name, int level)
{
DIR *dir;
struct dirent *entry;
struct mntent *ent;
FILE *aFile;
if (!(dir = opendir(name)))
return;
if (!(entry = readdir(dir)))
return;
do {
if (entry->d_type == DT_DIR) {
char path[1024];
int len = snprintf(path, sizeof(path)-1, "%s/%s", name, entry->d_name);
path[len] = 0;
if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0)
continue;
printf("%*s[%s]\n", level*2, "", entry->d_name);
listdir(path, level + 1);
}
else {
printf("%*s- %s\n", level*2, "", entry->d_name);
aFile = setmntent(entry);
while (NULL != (ent = getmntent(aFile))) {
printf("%s %s\n", ent->mnt_fsname, ent->mnt_dir);
}
endmntent(aFile);
}
} while (entry = readdir(dir));
closedir(dir);
}
int main(void)
{
listdir("/", 0);
return 0;
}