题目要求:设计一个目录扫描程序,输入目录名,扫描该目录下的文件,依次输出扫描的文件名
#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)//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()
{
printf("Directory scan of /home: \n");
printdir("/home/yg/project",0);
printf("Done\n");
return 0;
}
小结:
1.如何将vim 里的代码格式化?
https://blog.csdn.net/weixin_34148340/article/details/94506341
gg=G 将全部代码格式化
nG=mG 将第n行到第m行的代码格式化
注:如果ESC之后输入的是 :gg=G 即前面加了个分号‘:’那么就会有不是编辑器命令的提示。
gg:到达文件最开始,=:要求缩进 ,G:直到文件尾
Linux下DIR,dirent,stat 等结构体详解
struct __dirstream
{
void *__fd;
char *__data;
int __entry_data;
char *__ptr;
int __entry_ptr;
size_t __allocation;
size_t __size;
__libc_lock_define (, __lock)
};
typedef struct __dirstream DIR;