博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux编程学习笔记(十二) 遍历目录
阅读量:6254 次
发布时间:2019-06-22

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

1 默认情况下  实际用户和有效用户是一样的

  实际用户:执行用户
  有效用户:权限用户
getuid()  实际用户
geteuid() 有效用户
chmod u+s 之后 ,其他人执行文件时,实际用户和有效用户会不一样
2 目录相关函数
int chdir(const char *path);改变当前目录
int mkdir(const char *pathname, mode_t mode); 创建目录
int rmdir(const char *pathname); 删除目录
 int unlink(const char *pathname); 删除文件
mode_t umask(mode_t mask); 设置文件权限屏蔽位
stat  fstat lstat文件目录状态
3 目录的遍历
3.1 遍历方法一: opendir readdir
DIR *opendir(const char *name);
struct dirent *readdir(DIR *dirp);
int closedir(DIR *dirp);
           struct dirent {
               ino_t          d_ino;       /* inode number */
               off_t          d_off;       /* offset to the next dirent */
               unsigned short d_reclen;    /* length of this record */
               unsigned char  d_type;      /* type of file; not supported
by all file system types */
               char        d_name[256]; /* filename */
           };

#include 
#include
#include
#include
//exit()int main(){ DIR *d = opendir("/home/zhao"); if(d == 0) { perror("opendir:%m\n"); exit(1); } struct dirent * de; while(de=readdir(d)) { printf("%s \t%d\n",de->d_name,de->d_type); } //d_type 4 表示目录 8表示文件 closedir(d); }

3.2   scandir 
   int scandir(const char *dirp, //目录名 
struct dirent ***namelist, //返回目录列表
int (*filter)(const struct dirent *), //回调函数 过滤目录 NULL表不过滤
int (*compar)(const struct dirent **, const struct dirent **)); //对查询结果排序 NULL表不排序
      过滤规则 filter返回0 则不过滤掉 非0则显示
排序规则 compar  >0 排在前面 <0排在后面
已有的排序
int alphasort(const void *a, const void *b);
int versionsort(const void *a, const void *b);
返回值: >=0 目录个数
-1 目录查找失败

#include 
#include
#include
#include
//exit()int filter(const struct dirent *);int sort(const struct dirent**,const struct dirent **);int main(){ struct dirent **d; //int r = scandir("/home/zhao",&d,filter,alphasort); int r = scandir("/home/zhao",&d,filter,sort); //与alphasort你序 printf("子目录个数为%d\n",r); while(*d != 0) { printf("%s\n",(*d)->d_name); d++; } return 0;}//过滤掉名字以.开头的文件夹int filter(const struct dirent* d){ if(strncmp(d->d_name,".",1) == 0) { return 0; } return 1;}int sort(const struct dirent**a,const struct dirent **b){ return -alphasort(a,b);}

转载地址:http://vajsa.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
selenium怎么应对网页分页的情况
查看>>
软件包管理之rpm
查看>>
Linux启动和内核管理
查看>>
IOS学习之Xcode 的Debug技巧
查看>>
分布式并发问题解决的一些小心得
查看>>
jquery validate addMethod 自定义验证方法
查看>>
iOS Runtime原理及使用
查看>>
WAS 管理节点和node同步报错
查看>>
9-13 文本处理工具sed及awk的用法
查看>>
微软MCITP系列课程(十四)搭建DNS服务器
查看>>
mysql数据库授权学习记录
查看>>
在CentOS或RHEL上如何为LAMP服务器保驾护航
查看>>
android rom移植知识普及
查看>>
一个IT人士的个人经历,给迷失方向的朋友
查看>>
Python 爬取糗事百科段子
查看>>
使用unity3D免费版制作漂亮的水面效果
查看>>
jsp详细说明
查看>>
More about keeping Android’s screen awake
查看>>
MySQL数据库服务器逐渐变慢分析与解决
查看>>