大鹏一日同风起,扶摇直上九万里。这篇文章主要讲述#导入Word文档图片# Linux下目录编程相关的知识,希望能为你提供帮助。
1.1 打开目录?头文件?
#include <
sys/types.h>
#include < dirent.h> |
DIR *opendir(const char *name);
|
const char *name :目录的地址。
返回值?
成功返回一个指针指向的目录流。
执行错误,返回NULL。
1.2 关闭目录?头文件?
#include <
sys/types.h>
#include < dirent.h> |
int closedir(DIR *dirp);
|
关闭指定的目录。
返回值?
0表示成功,-1表示失败。
1.3 读取目录?头文件?
#include <
sys/types.h>
#include < dirent.h> |
struct dirent *readdir(DIR *dirp);
int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result); //readdir的可重入版本 |
readdir_r函数返回值:成功时返回0。错误时,它返回一个正的错误码。如果到达目录结尾,readdir_r() 返回0,并且把 *result 设置为 NULL。
相关结构体:
struct dirent ino_t d_ino; /* 节点号 */ off_t d_off; /* 偏移量 */ unsigned short d_reclen; /* 文件的长度*/ unsigned char d_type; /* 文件的类型*/ char d_name[256]; /* 文件名称 */ ; |
- 遍历目录示例:
#include <
sys/types.h>
#include < dirent.h> #include < stdio.h> #include < stdlib.h> int main(int argc,char **argv) if(argc!=2) printf("error! usg: ./app dir"); exit(-1); DIR *dirp=NULL; dirp=opendir(argv[1]); if(dirp==NULL) printf("error!!\\n"); exit(-1); struct dirent *dir; //循环遍历目录 while(dir=readdir(dirp)) printf("%s\\n",dir-> d_name); //打印文件的名称 closedir(dirp); //关闭目录 return 0; |
#include <
sys/types.h>
#include < dirent.h> |
void seekdir(DIR *dirp, long offset);
|
1.5 返回当前目录位置相对目录头的偏移量?函数原型
#include <
dirent.h>
long telldir(DIR *dirp); |
- 打印出文件目录的偏移位置:
#include <
sys/types.h>
#include < dirent.h> #include < stdio.h> #include < stdlib.h> int main(int argc,char **argv) if(argc!=2) printf("error! usg: ./app dir"); exit(-1); DIR *dirp=NULL; dirp=opendir(argv[1]); if(dirp==NULL) printf("error!!\\n"); exit(-1); struct dirent *dir; long len; //循环遍历目录 while(dir=readdir(dirp)) len=telldir(dirp); printf("%s ",dir-> d_name); //打印文件的名称 printf("%d\\n",len); return 0; |
需要包含的头文件:
#include <
sys/types.h>
#include < dirent.h> |
DIR *opendir(const char *name);
//打开一个目录 struct dirent *readdir(DIR *dir); //读取目录的一项信息,并返回该项信息的结构体指针 void rewinddir(DIR *dir); //重新定位到目录文件的头部 void seekdir(DIR *dir,off_t offset); //用来设置目录流目前的读取位置 off_t telldir(DIR *dir); //返回目录流当前的读取位置 int closedir(DIR *dir); //关闭目录文件 |
需要包含的头文件:
#include <
sys/stat.h>
#include < sys/types.h> #include < unistd.h> |
int mkdir(const char *pathname, mode_t mode);
//创建目录,mode是目录权限。 int rmdir(const char *pathname); //删除目录。只能删除空目录 |
- mkdir函数说明:mkdir()函数以mode方式创建一个以参数pathname命名的目录,mode定义新创建目录的权限。
- 返回值:若目录创建成功,则返回0;否则返回-1
- mode方式:
S_IRWXU | 00700权限,代表该文件所有者拥有读,写和执行操作的权限 |
S_IRUSR(S_IREAD) | 00400权限,代表该文件所有者拥有可读的权限 |
S_IWUSR(S_IWRITE) | 00200权限,代表该文件所有者拥有可写的权限 |
S_IXUSR(S_IEXEC) | 00100权限,代表该文件所有者拥有执行的权限 |
S_IRWXG | 00070权限,代表该文件用户组拥有读,写和执行操作的权限 |
S_IRGRP | 00040权限,代表该文件用户组拥有可读的权限 |
S_IWGRP | 00020权限,代表该文件用户组拥有可写的权限 |
S_IXGRP | 00010权限,代表该文件用户组拥有执行的权限 |
S_IRWXO | 00007权限,代表其他用户拥有读,写和执行操作的权限 |
S_IROTH | 00004权限,代表其他用户拥有可读的权限 |
S_IWOTH | 00002权限,代表其他用户拥有可写的权限 |
S_IXOTH | 00001权限,代表其他用户拥有执行的权限 |
该函数原型:
#include <
sys/types.h>
#include < sys/stat.h> mode_t umask(mode_t mask); |
umask()会将系统umask值设成参数mask& 0777后的值,然后将先前的umask值返回。在使用open()建立新文件时,该参数mode并非真正建立文件的权限,而是(mode& ~umask)的权限值。
例如,在建立文件时指定文件权限为0666,通常umask值默认为022,则该文件的真正权限则为0666& ~022=0644,也就是rw-r--r--返回值此调用不会有错误值返回。返回值为原先系统的umask值。
因此,创建目录之前,需要先执行umask(0) 然后再调用mkdir函数。
示例:
umask(0);
mkdir(argv[1],S_IRWXO); |
1.6.3 改变文件的访问权限
#include <
sys/stat.h>
int chmod(const char* path, mode_t mode); //mode形如:0777 |
1.6.4 获取目录路径
原型为:
#include <
unistd.h>
//头文件 char *getcwd(char *buf, size_t size); //获取当前目录,相当于pwd命令 char *getwd(char *buf); char *get_current_dir_name(void); |
- Getwd函数使用示例:
char *cwd;
cwd = getcwd (NULL, 0); if (!cwd) perror (”getcwd”); exit (EXIT_FAILURE); printf (”cwd = %s\\n”, cwd); free (cwd); char cwd[BUF_LEN]; if (!getcwd (cwd, BUF_LEN)) perror (”getcwd”); exit (EXIT_FAILURE); printf (”cwd = %s\\n”, cwd); |
- get_current_dir_name函数使用示例:
char *cwd;
cwd = get_current_dir_name ( ); if (!cwd) perror (”get_current_dir_name”); exit (EXIT_FAILURE); printf (”cwd = %s\\n”, cwd); free (cwd); |
- getwd函数使用示例:
char cwd[PATH_MAX];
if (!getwd (cwd)) 【#导入Word文档图片# Linux下目录编程】perror (”getwd”); exit (EXIT_FAILURE); printf (”cwd = %s\\n”, cwd); |
opendir函数打开目录; readdir函数读取目录的内容,如果已经读取到目录末尾,又想重新开始读,则可以使用rewinddir函数将文件指针重新定位到目录文件的起始位置; closedir函数关闭目录 |
#include <
unistd.h>
int chdir(const char *path); int fchdir(int fd); |
两个函数调用成功返回0,失败-1
注意: 这些改变目录的函数只是针对当前进程有效,Linux系统没有提供可以改变不同进程当前目录的机制。
- 示例1:
char *swd;
int ret; /* save the current working directory */ swd = getcwd (NULL, 0); if (!swd) perror (”getcwd”); exit (EXIT_FAILURE); /* change to a different directory */ ret = chdir (some_other_dir); if (ret) perror (”chdir”); exit (EXIT_FAILURE); /* do some other work in the new directory... */ /* return to the saved directory */ ret = chdir (swd); if (ret) perror (”chdir”); exit (EXIT_FAILURE); free (swd); |
- 示例2:
int swd_fd;
swd_fd = open (”.”, O_RDONLY); if (swd_fd == -1) perror (”open”); exit (EXIT_FAILURE); /* change to a different directory */ ret = chdir (some_other_dir); if (ret) perror (”chdir”); exit (EXIT_FAILURE); /* do some other work in the new directory... */ /* return to the saved directory */ ret = fchdir (swd_fd); if (ret) perror (”fchdir”); exit (EXIT_FAILURE); /* close the directory’s fd */ ret = close (swd_fd); if (ret) perror (”close”); exit (EXIT_FAILURE); |
1.7 其他路径处理函数1.7.1 获取目录名称
#include <
stdio.h>
int main() char *dirc, *basec, *bname, *dname; char *path = "/etc/passwd"; dirc = strdup(path); //字符串拷贝函数,自带malloc空间申请 basec = strdup(path); dname = dirname(dirc); bname = basename(basec); printf("dirname=%s, basename=%s\\n", dname, bname); return 0; 运行结果: [root@wbyq test]# ./a.out dirname=/etc, basename=passwd |
[root@wbyq test]# dirname /work/123.c /work |
1.7.2 剔除目录名称
#include <
libgen.h>
char *basename(char *path); |
#include <
stdio.h>
int main() printf("%s\\n",basename("/worok/123.c")); return 0; 运行结果: [root@wbyq test]# gcc 123.c [root@wbyq test]# ./a.out 123.c |
- 该函数还有相对应的命令: basename
[root@wbyq test]# basename /work/123.c 123.c |
- 以上两个函数路径使用总结: