どう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;
}