日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

linux高编IO-------opendir、closedir、readdir

發(fā)布時間:2024/4/17 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 linux高编IO-------opendir、closedir、readdir 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

包含頭文件

#include <dirent.h> #include <sys/types.h>

opendir

/**************************** 功能:打開目錄文件* 參數(shù):目錄名* 返回值:成功返回指向目錄文件的指針,失敗返回NULL,并設置errno* ************************/ DIR *opendir(const char pathname);

?

closedir

/**************************** 功能:關閉目錄文件* 參數(shù):指向目錄文件的指針* 返回值:成功返回0,失敗返回-1* ************************/ int closedir(DIR *dirp);

readdir

/**************************** 功能:讀取目錄文件* 參數(shù):指向目錄文件的指針* 返回值:成功目錄信息的結(jié)構(gòu)體,失敗返回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.定義目錄指針,結(jié)構(gòu)體DIR *dp ;struct dirent *cur ;//2.打開目錄文件dp = opendir(PAT);if(dp == NULL){perror("opendir()");exit(1);}//3.讀目錄內(nèi)容while((cur = readdir(dp)) != NULL){puts(cur->d_name);}//4.關閉目錄文件 close(dp);exit(0); }

?

轉(zhuǎn)載于:https://www.cnblogs.com/muzihuan/p/5279620.html

總結(jié)

以上是生活随笔為你收集整理的linux高编IO-------opendir、closedir、readdir的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。