在这里,我们得到了一个目录。我们的任务是创建一个 C 程序来列出目录中的所有文件和子目录。
目录是一个地方/区域/位置,其中一组文件( s) 将被存储。
子目录是根目录中的一个目录,反过来,它可以有另一个子目录。
在C 编程语言可以轻松列出目录中的所有文件和子目录。下面的程序将说明如何列出目录中的所有文件和子目录。
//列出目录中所有文件和子目录的C程序
现场演示
#include <stdio.h> #include <dirent.h> int main(void){ struct dirent *files; DIR *dir = opendir("."); if (dir == NULL){ printf("Directory cannot be opened!" ); return 0; } while ((files = readdir(dir)) != NULL) printf("%s</p><p>", files->d_name); closedir(dir); return 0; }
cprograms .. prog1.c prog2.c prog3.c ... prog41.c This will return all files and sub-directory of the current directory.
以上是列出目录中的所有文件和子目录的C程序的详细内容。更多信息请关注PHP中文网其他相关文章!