linux高编IO-------opendir、closedir、readdir
生活随笔
收集整理的這篇文章主要介紹了
linux高编IO-------opendir、closedir、readdir
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
包含頭文件
#include <dirent.h> #include <sys/types.h>opendir
/**************************** 功能:打開目錄文件* 參數:目錄名* 返回值:成功返回指向目錄文件的指針,失敗返回NULL,并設置errno* ************************/ DIR *opendir(const char pathname);?
closedir
/**************************** 功能:關閉目錄文件* 參數:指向目錄文件的指針* 返回值:成功返回0,失敗返回-1* ************************/ int closedir(DIR *dirp);readdir
/**************************** 功能:讀取目錄文件* 參數:指向目錄文件的指針* 返回值:成功目錄信息的結構體,失敗返回NULL,并設置errno* ************************/ struct dirent *readdir(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 supportedby all file system types */char d_name[256]; /* filename */ };例子:
/************************查看/etc目錄所有文件**********************/ #include <stdio.h> #include <stdlib.h> #include <dirent.h> #include <sys/types.h>#define PAT "/etc"int main() {//1.定義目錄指針,結構體DIR *dp ;struct dirent *cur ;//2.打開目錄文件dp = opendir(PAT);if(dp == NULL){perror("opendir()");exit(1);}//3.讀目錄內容while((cur = readdir(dp)) != NULL){puts(cur->d_name);}//4.關閉目錄文件 close(dp);exit(0); }?
轉載于:https://www.cnblogs.com/muzihuan/p/5279620.html
總結
以上是生活随笔為你收集整理的linux高编IO-------opendir、closedir、readdir的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 让浏览器变身代码编辑器
- 下一篇: JS Event事件