- 论坛徽章:
- 0
|
#include <stdio.h>
#include <unistd.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];
printf("Directory scan of /home:\n");
printdir(topdir,0);
printf("Done.\n");
}
以上为实现代码,并且能实现遍历目录并显示目录下的文件,子目录显示实现缩进4个空格。
问题:
printf("%*s%s/\n",depth,"",entry->d_name);
1)*号作用是什么,我看过有不同的C介绍,说法不一,但都不能解释最终实现功能;
2)两个格式控制符,后面却带了三个输出量。
谢谢。 |
|