stat、fstat和lstat函数

函数声明如下

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int stat(const char *path, struct stat *buf);
int fstat(int fd, struct stat *buf);
int lstat(const char *path, struct stat *buf);

三个函数的返回值:若成功则返回0,若出错则返回-1


stat函数根据pathname路径返回与此命名文件有关的信息结构

fstat根据文件描述符获取有关信息结构

lstat类似于stat,但是当命名文件是一个符号链接时,lstat返回该符号链接的有关信息,而不是由该符号链接引用的文件信息


该结构体的基本形式

struct stat {
               dev_t     st_dev;     /* ID of device containing file */
               ino_t     st_ino;     /* inode number */
               mode_t    st_mode;    /* protection */
               nlink_t   st_nlink;   /* number of hard links */
               uid_t     st_uid;     /* user ID of owner */
               gid_t     st_gid;     /* group ID of owner */
               dev_t     st_rdev;    /* device ID (if special file) */
               off_t     st_size;    /* total size, in bytes */
               blksize_t st_blksize; /* blocksize for file system I/O */
               blkcnt_t  st_blocks;  /* number of 512B blocks allocated */
               time_t    st_atime;   /* time of last access */
               time_t    st_mtime;   /* time of last modification */
               time_t    st_ctime;   /* time of last status change */
};


文件类型信息包含在stat结构的st_mode成员中。可用宏确定文件类型。这些宏的参数都是stat结构中的st_mode成员

           S_ISREG(m)  普通文件

           S_ISDIR(m)   目录

           S_ISCHR(m)  字符特殊文件

           S_ISBLK(m)  块特殊文件

           S_ISFIFO(m)  管道或FIFO文件

           S_ISLNK(m)   符号链接

           S_ISSOCK(m) 套接子


#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
	int         i;
	struct stat buf;
	char        *ptr;
	
	for (i=1; i<argc; i++) {
		printf("%s: ", argv[i]);
		if (lstat(argv[i], &buf) < 0) {
			printf("lstat error\n");
			continue;		
		}
		if (S_ISREG(buf.st_mode))
			ptr = "普通文件";
		else if (S_ISCHR(buf.st_mode))
			ptr = "目录文件";
		else if (S_ISCHR(buf.st_mode))
			ptr = "字符特殊文件";
		else if (S_ISBLK(buf.st_mode))
			ptr = "块特殊文件";
		else if (S_ISFIFO(buf.st_mode))
			ptr = "管道或FIFO文件";
		else if (S_ISLNK(buf.st_mode))
			ptr = "符号链接";
		else if (S_ISSOCK(buf.st_mode))
			ptr = "socket文件";
		else 
			ptr = "未知类型";
		printf("%s\n", ptr);
	}

	return 0;
}




在终端中输入命令行参数

./a.out /etc/passwd /dev/log \

>  /dev/cdrom


运行结果:

/etc/passwd: 普通文件
/dev/log: socket文件
/dev/cdrom: 符号链接







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值