2

当我们运行下面的命令时,我想要一个方便的 c 中的 API 来获取给定 btrfs 分区中的子卷列表。

btrfs 子卷列表 btrfs/subvol/path

4

1 回答 1

1

如果你找不到方便的 API,popen你想要的是:

#include <stdio.h>

FILE *popen(const char *command, const char *mode);
int pclose(FILE *stream);

int main(void)
{
    FILE *cmd = popen("btrfs subvolume list btrfs/subvol/path", "r");
    char result[128];

    while (fgets(result, sizeof(result), cmd) != NULL)
           printf("%s", result);
    pclose(cmd);
    return 0;
}
于 2014-07-04T10:53:35.637 回答