如何获取已安装文件系统的列表

时间:2013-05-15 12:42:06

标签: c linux api mount

我需要在不使用/ proc / mounts的情况下解析已挂载文件系统的表,因为我正在解析它以确定proc文件系统的挂载位置。我该怎么办?

我用Google搜索了,但所有答案都是使用/ proc

为什么人们如此确定procfs被挂载到默认位置?


我出于好奇而问。我知道/ proc是一个标准的事实,很多工具都使用它,所以/ proc锚定得非常好。

Linux API与文件系统路径保持一致,所有真正需要的信息都通过环境变量传递,从而可以更改库和可执行文件,配置文件等。

我很好奇是否有可能在没有事先了解的情况下检测PROC_PATH?我可能会使用statvfs作为回调,但这是非常不合适的。绝对应该是更直接的方式。

2 个答案:

答案 0 :(得分:3)

查看/ etc / mtab,它会跟踪已安装的文件系统。

答案 1 :(得分:2)

df -k怎么样? 谷歌也引导我到this

在Mac上

你有diskutil list

如果您想在c代码中弄清楚需要执行哪些系统调用,请使用strace查找。


另一种假设您可以访问/根目录的方法使用了Petesh code和llolydm code

#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;
}