Linux系统编程_1_文件夹读取(实现简单ls命令)

Posted yfceshi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux系统编程_1_文件夹读取(实现简单ls命令)相关的知识,希望对你有一定的参考价值。

闲来无事。随便写写,实现简单的ls命令:


|  1 #include <stdio.h>
|  2 #include <stdlib.h>
|  3 #include <dirent.h>
|  4 #include <string.h>
|  5
|  6 int main(int argc, char **argv)
|  7 {
|  8     DIR *pDir;
|  9     struct dirent *stDir;
| 10     int flag = 0;
| 11
| 12     if(argc > 2)
| 13     {
| 14         printf("Usage: ./ls or ./ls xxx\n");
| 15         exit(-1);
| 16     }
| 17     if(argc == 1)
| 18     {
| 19         flag = 1;
| 20         if((pDir = opendir(".")) == NULL)
| 21         {
| 22             printf("open dir error!\n");
| 23             exit(-1);
| 24         }
| 25     }
| 26
| 27     if(!flag)
| 28     {
| 29         if((pDir = opendir(argv[1])) == NULL)
| 30         {
| 31             printf("open dir error!\n");
| 32             exit(-1);
| 33         }
| 34     }
| 35
| 36     while((stDir = readdir(pDir)) != NULL)
| 37     {
| 38         if(strcmp(stDir->d_name, ".") == 0 || strcmp(stDir->d_name, "..") == 0)
| 39             continue;
| 40         printf("%s\n", stDir->d_name);
| 41     }
| 42
| 43     closedir(pDir);
| 44
| 45     return 0;
| 46 }

功能:

./ls     ——列出当前文件夹下文件

./ls xxx——列出指定文件夹下文件

忽略.与..两个文件夹。





以上是关于Linux系统编程_1_文件夹读取(实现简单ls命令)的主要内容,如果未能解决你的问题,请参考以下文章

linux 查看命令 ___软连接__大小排序 ___时间排序

Linux系统管理_主题02 :管好文件_2.2 列出文件和文件属性_chmod_ls

linux字符模式下的LS命,怎么样才可以看到没显示的部份

在Linux下:用 C 语言实现 ls 命令

Linux命令学习_ls

001_Linux常用命令之ls命令