用stat函数实现ls -l命令

通过stat函数实现ls -l命令:

**
**
**

代码如下:


#include <stdio.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <pwd.h>
#include <grp.h>
#include <time.h>

int main(int argc, char *argv[])
{
	if(argc < 2)
	{
		printf("Usage:%s <file>\n",argv[0]);
		return -1;
	}

	struct stat st;//保存获取到的文件的属性
	int ret = stat(argv[1], &st);//获取文件的属性
	if(-1 == ret)
	{
		perror("stat");
		return -1;
	}
#if 0
	//通过宏函数判断文件类型	
	if(S_ISREG(st.st_mode))
		printf("-");
	else if(S_ISDIR(st.st_mode))
		printf("d");
#endif
	//通过st_mode的值判断文件类型
	switch(st.st_mode & S_IFMT)
	{
		case S_IFREG:
			printf("-");
			break;
		case S_IFDIR:
			printf("d");
			break;
	}
	//文件的权限
	int i=0;
	for(i=8;i>=0;i--)
	{
		if(st.st_mode & (1 << i))
		{
			switch(i%3)
			{
				case 2:
					printf("r");
					break;
				case 1:
					printf("w");
					break;
				case 0:
					printf("x");
					break;
			}
		}
		else
			printf("-");
	}

	struct passwd *pw = getpwuid(st.st_uid);//根据UID获取用户的用户名
	printf(" %s",pw->pw_name);

	struct group *gp = getgrgid(st.st_gid);
	printf(" %s",gp->gr_name);

	printf(" %ld",st.st_size);

	printf(" %s %s",argv[1],ctime(&(st.st_mtime)));

	return 0;
}

**
**


运行结果:在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值