博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于<linux程序设计>的第三章实验的心得
阅读量:5068 次
发布时间:2019-06-12

本文共 890 字,大约阅读时间需要 2 分钟。

 关于目录遍历的代码自己试着做了一个算是对linux下这几个函数有个理解,还是要多练

在linux中文件夹也一种文件

.  表示目录本身

..  表示上级目录

#include
#include
#include
#include
#include
#include
#include
void printdir(char *dir ,int depth){ DIR *dp; struct dirent *entry; struct stat statbuf; dp=opendir(dir); 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);}

转载于:https://www.cnblogs.com/samael/articles/2017550.html

你可能感兴趣的文章
IOS--沙盒机制
查看>>
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
关于indexOf的使用
查看>>
英语单词
查看>>
centos6.8下安装matlab2009(图片转帖)
查看>>
Mongo自动备份
查看>>
cer证书签名验证
查看>>
新手Python第一天(接触)
查看>>
【bzoj1029】[JSOI2007]建筑抢修
查看>>
synchronized
查看>>
迭代器和生成器
查看>>
codevs 1080 线段树练习
查看>>
[No0000195]NoSQL还是SQL?这一篇讲清楚
查看>>
IOS开发UI篇--UITableView的自定义布局==xib布局
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>
Python-Web框架的本质
查看>>