如何列出当前目录中的文件及其 inode 编号?

如何列出当前目录中的文件及其 inode 编号?

如何获取当前工作目录中的项目列表及其 inode 编号?

答案1

ls-i标志:

$ ls -i
1054235 a.out  1094297 filename.txt

但如果你富有冒险精神,可以ls -i自行构建:

#include <dirent.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>
#include <limits.h>

void print_dirents(DIR * dir){
    struct dirent *entry;
    while ( (entry=readdir(dir)) != NULL ){
        printf("%s,%d\n",entry->d_name,entry->d_ino);
    }
}

int main(){

    char current_dir[PATH_MAX];
    DIR *cwd_p;

    if (  getcwd(current_dir,sizeof(current_dir)) != NULL){
        cwd_p = opendir(current_dir);
        print_dirents(cwd_p);
        closedir(cwd_p);
    } else {
        perror("NULL pointer returned from getcwd()");
    }

return 0;
}

它的工作原理如下:

$ gcc lsi.c && ./a.out
filename.txt,1094297
a.out,1054235
..,1068492
.,1122721
lsi.c,1094294

答案2

stat ./*

或者

man stat; stat --format=*f* ./*

相关内容