要求:使用getopt()来支持最少3个命令行选项;支持遍历目录功能;在源代码前用注释说明my_ls各选项功能。
1条回答 默认 最新
关注 这个代码可以么
#include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <dirent.h> #include <time.h> /* 文件大小和修改时间 */ static int get_file_size_time(const char *filename) { struct stat statbuf; /* 判断未打开文件 */ if(stat(filename,&statbuf)==-1) { printf("Get stat on %s Error: %s\n", filename, strerror(errno)); return(-1); } if(S_ISDIR(statbuf.st_mode)) // 目录 return(1); if(S_ISREG(statbuf.st_mode)) // 文件 printf("%s size: %ld bytes\tmodified at %s", filename, statbuf.st_size, ctime(&statbuf.st_mtime)); return(0); } int main(int argc,char **argv) { DIR *dirp; struct dirent *direntp; int stats; if(argc!=2) { printf("Usage: %s filename\n\a", argv[0]); exit(1); } if(((stats=get_file_size_time(argv[1]))==0)||(stats==-1)) // 文件或出现错误 exit(1); /* 打开目录 */ if((dirp=opendir(argv[1]))==NULL) { printf("Open Directory %s Error: %s\n", argv[1], strerror(errno)); exit(1); } /* 返回目录中文件大小和修改时间 */ while((direntp=readdir(dirp))!=NULL) { /* 给文件或目录名添加路径:argv[1]+"/"+direntp->d_name */ char dirbuf[512]; memset(dirbuf,0,sizeof(dirbuf)); strcpy(dirbuf,argv[1]); strcat(dirbuf,"/"); strcat(dirbuf,direntp->d_name); if(get_file_size_time(dirbuf)==-1) break; } closedir(dirp); exit(1); }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 ansys fluent计算闪退
- ¥15 有关wireshark抓包的问题
- ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
- ¥15 向数据表用newid方式插入GUID问题
- ¥15 multisim电路设计
- ¥20 用keil,写代码解决两个问题,用库函数
- ¥50 ID中开关量采样信号通道、以及程序流程的设计
- ¥15 U-Mamba/nnunetv2固定随机数种子
- ¥15 vba使用jmail发送邮件正文里面怎么加图片
- ¥15 vb6.0如何向数据库中添加自动生成的字段数据。