gpt4 book ai didi

c - 有什么方法可以使用给定的 inode 编号搜索文件或文件名?

转载 作者:行者123 更新时间:2023-12-02 02:06:24 30 4
gpt4 key购买 nike

我正在从用户那里获取一个 inode 编号,我必须在文件系统中搜索该文件。如何搜索 inode 编号。我必须使用 C 和 unix 来执行此操作。

到目前为止,这是我的代码:

#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>

int main(){

int inodeNumber;
printf("Please enter the inode you wish to view:\n");
scanf("%d",&inodeNumber);

struct stat fileStat;
int temp_file;
temp_file = system("find/fs/root -inum inodeNumber");
fstat(temp_file, &fileStat);
//printf("Information for %s\n",argv[1]);
printf("---------------------------\n");
printf("File Size: \t\t%d bytes\n",(int)fileStat.st_size);
printf("Number of Links: \t%d\n",(int)fileStat.st_nlink);
printf("File inode: \t\t%d\n",(int)fileStat.st_ino);
}

谢谢

最佳答案

递归遍历文件系统的目录,对每个文件执行stat(或者可能是lstat),比较struct stat 的st_ino 成员 到您正在搜索的 inode 编号。

如果您不必在 C 中执行此操作,我建议您改用 find/fs/root -inum N

关于c - 有什么方法可以使用给定的 inode 编号搜索文件或文件名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14822611/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com