课上补做:⽤C语⾔编程实现ls命令课上补做:⽤C语⾔编程实现ls命令
⼀、有关ls
ls :⽤来打印当前⽬录或者制定⽬录的清单,显⽰出⽂件的⼀些信息等。
ls -l :列出长数据串,包括⽂件的属性和权限等数据
ls -R:连同⼦⽬录⼀同显⽰出来,也就所说该⽬录下所有⽂件都会显⽰出来
ls -a :可以将⽬录下的全部⽂件(包括隐藏⽂件)显⽰出来
ls -r:将排序结果反向输出独生子补贴
⼆、参考伪代码实现ls的功能,提交代码的编译,运⾏结果截图。
打开⽬录⽂件
针对⽬录⽂件
读取⽬录条⽬
显⽰⽂件名
关闭⽂件⽬录⽂件七号夫妇
wap歌词中文翻译完整
#include <unistd.h>
#include <stdio.h>
#include <dirent.h>
林夕为什么被大陆禁
#include <string.h>
#include <sys/stat.h>
#include <stdlib.h>
void printdir(char *dir, int depth)
{
DIR *dp;
struct dirent *entry;
struct stat statbuf;刘雨欣露点
if((dp = opendir(dir)) == NULL)
{
fprintf(stderr, "cannot open directory: %s\n", dir);
return;
}
chdir(dir);
while((entry = readdir(dp)) != NULL)
{
lstat(entry->d_name, &statbuf);
if(S_ISDIR(statbuf.st_mode))
{
if(strcmp(".", entry->d_name) == 0 ||
strcmp("..", entry->d_name) == 0)
continue;
隐藏的文件怎么显示出来
printf("%*s%s/\n", depth, "", entry->d_name);
printdir(entry->d_name, depth+4);
}
else printf("%*s%s\n", depth, "", entry->d_name);
}
chdir("..");
closedir(dp);
}
int main(int argc, char* argv[])
{
char *topdir = ".";
if (argc >= 2)
topdir = argv[1];
printdir(topdir, 0);
exit(0);
}