- 论坛徽章:
- 0
|
linux下写了一个fstat系统调用提取文件信息的程序,代码如下:- #include <stdio.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <sys/fcntl.h>
- int
- main(int argc, char **argv)
- {
- int file_desc;
- char *filename = argv[1];
- /* struct stat {
- dev_t st_dev;
- ino_t st_ino;
- mode_t st_mode;
- nlink_t st_nlink;
- uid_t st_uid;
- gid_t st_gid;
- dev_t st_rdev;
- off_t st_size;
- blksize_t st_blksize;
- blkcnt_t st_blocks;
- time_t st_atime;
- time_t st_mtime;
- time_t st_ctime;
- };
- */
- struct stat stat_buf;
- file_desc = open(filename, O_RDONLY);
- if (file_desc < 0) {
- printf("File %s open failed\n", filename);
- return 1;
- } else
- fstat(file_desc, &stat_buf);
- printf("st_dev is %d, st_ino is %d, st_size is %d\n", stat_buf.st_dev, stat_buf.st_ino, stat_buf.st_size);
-
- close(filename);
- return 0;
- }
复制代码 编译后获取/etc/passwd文件信息如下:
[root@centos c]# ./fstat /etc/passwd
st_dev is 2050, st_ino is 0, st_size is 650569
而ls -li看到的信息如下:
[root@centos c]# ls -li /etc/passwd
650569 -rw-r--r-- 1 root root 1725 10-12 15:03 /etc/passwd
可以看到/etc/passwd的i节点号为650569,而我的程序获得的st_ino为0,而st_size为650569,获取的文件信息错乱了。
确实不知道什么原因,还请大家指点。谢谢!
stat结构为代码里面注释掉的那一段struct。
系统版本如下:
Linux centos.local 2.6.18-238.el5 #1 SMP Thu Jan 13 16:24:47 EST 2011 i686 i686 i386 GNU/Linux
CentOS release 5.6 (Final)
gcc版本:
gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-50) |
|