Unix - ls命令的简要实现

#include <dirent.h>
是POSIX.1标准定义的unix类文件夹操作的头文件。包括了很多UNIX系统服务的函数原型。比如opendir函数、readdir函数.
opendir函数:
DIR *opendir(const char *pathname);返回值:若成功则返回指针,若出错则返回NULL。
struct dirent *readdir(DIR *dp); 返回值:若成功则返回指针,若在文件夹结尾或出错则返回NULL。


        ls的简要实现:



写makefile



执行測试:


posted @ 2017-07-23 20:07  claireyuancy  阅读(427)  评论(0编辑  收藏  举报