摘要: 代码笔记,仅供自己学习使用。 下面是通过调用调用dirent的系统库实现,查看目录下内容的模块 #include "apue.h" #include <dirent.h> int main(int argc, char *argv[]){ DIR *dp; struct dirent *dirp; 阅读全文
posted @ 2021-10-01 22:06 就是想学习 阅读(39) 评论(0) 推荐(0) 编辑