C opendir和readdir以及inode

时间:2015-04-16 11:27:35

标签: c inode opendir readdir

我已将程序保存在 5 文件的文件夹中。现在我要打印文件inode个数字。这是我的计划:

#include <sys/types.h>
#include <dirent.h>
#include <stdio.h>
#include <libgen.h>
#include <stdlib.h>
#include <string.h>

int main(){
   DIR *dir;
   struct dirent *dp;
    if((dir = opendir(".")) == NULL){
        printf ("Cannot open .");
        exit(1);  
    }
    while ((dp = readdir(dir)) != NULL) {
        printf("%i\n",(*dp).d_ino);
    }
}

这是我的结果

251
250
332
254
257
328
274
283

所以我有5个文件和8个i-node编号?怎么可能?

修改 当我添加打印本

printf("%i\n",dp->d_name);
printf("%i\n",dp->d_ino);

我得到了这个输出

-27246574
251
-27246550
250
-27246526
334
-27246502
254
-27246470
257
-27246438
328
-27246414
274
-27246382
283

所以我认为我的程序在目录中找不到文件?

1 个答案:

答案 0 :(得分:4)

d_name是一个字符串:

       struct dirent {
           ino_t          d_ino;       /* inode number */
           off_t          d_off;       /* offset to the next dirent */
           unsigned short d_reclen;    /* length of this record */
           unsigned char  d_type;      /* type of file; not supported
                                          by all file system types */
           char           d_name[256]; /* filename */
       };

所以你应该用%s打印它,而不是%i:

printf("%s %i\n",dp->d_name, dp->d_ino);

然后你会看到那里有什么。