文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>列出一个目录中的所有文件

列出一个目录中的所有文件

时间:2010-12-05  来源:longmenyu

本程序主要练习使用函数opendir,readdir,closedir对目录进行处理,实现读取目录中所有文件的功能。 函数清单如下:

#include <stdio.h>
#include <stdlib.h>
#include <dirent.h>

int main(int argc,char *argv[])
{
    DIR *dp;
    struct dirent *dirp;

    if(argc != 2)
    {
        perror("the number of arguments is wrong!");
        exit(1);
    }
    if((dp = opendir(argv[1])) == NULL)
    {
        printf("Can't open %s\n",argv[1]);
        exit(1);
    }
    while((dirp = readdir(dp)) != NULL)
    {
         printf("%s\n",dirp->d_name);
    }
    closedir(dp);
    exit(0);
}


编译源文件:     gcc -o listfile listfile.c 执行文件:     ./listfile ~/eagle 输出结果:     Can't open /home/longmenyu/eagle 执行文件:      ./listfile ~/test/code 输出结果: listfile hello mythread . .. main_function 执行文件:     ./listfile /home /home/longmenyu/test 输出结果: the number of arguments is wrong!: Success


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载