解析文件时fscanf格式化字符串

时间:2014-02-17 00:47:36

标签: c linux gcc scanf

我是Linux新手。我正在开发一个C应用程序。我需要几个过程的uid。我要做的是解析/proc/pid/status文件以获得进程的Uid

Name:    init
State:    S (sleeping)
Tgid:    1
Pid:    1
PPid:    0
TracerPid:    0
Uid: 0    0     0     0   0

要解析此文件,我正在考虑使用fscanf函数。

这里我想写一些通用代码,它适用于不同长度的进程。但我很困惑什么是解析这个文件的好方法。任何人都可以帮助我吗?

编辑: 这就是我所拥有的。但我创建了不必要的数组。我只想跳到Uid。但我不知道该怎么做。

  char temp[8][1024];

  struct FILE * pFile;

  pFile = fopen ("/proc/1/status","w+");


fscanf(pFile,"%[^\n] %[^\n] %[^\n] %[^\n] %[^\n] %[^\n] %s %s",temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7]);

printf(" User id %s \n",temp[7]);

由于

1 个答案:

答案 0 :(得分:2)

您可以逐行读取文件getline(它是c ++的一部分,C中的GNU扩展,而不是标准C),直到找到Uid,然后停止:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int 
main(void)
{   
    FILE * fp; 
    char * line = NULL;
    size_t len = 0;
    ssize_t read;

    fp = fopen("/proc/20204/status", "r");
    if (fp == NULL)
        exit(EXIT_FAILURE);

    while ((read = getline(&line, &len, fp)) != -1) {
            char *content;
            content = strtok(line, ":");

            printf("content: %s\n", content);
            if(strncmp(content, "Uid", 3) == 0)
            {   
                    printf("get it:\n");
                    //get the User ID
                    printf("%s\n", strtok(NULL, ":"));
                    break;
            }   
       }  

    if (line)
        free(line);
    exit(EXIT_SUCCESS);
}