免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4184 | 回复: 6
打印 上一主题 下一主题

[C] [求助]linux下读取目录下文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-09-12 22:56 |只看该作者 |倒序浏览
本帖最后由 aldslvda 于 2013-09-13 11:17 编辑

读取“/etc”目录下所有的目录结构,并依字母顺序排列。

#include<dirent.h>



考虑以下语句:

scandir("/etc",&namelist,0,alphasort);




程序段:


while(n--)
{
   printf("%s\n", namelist[n]->d_name);
   free(namelist[n]);
}





lz写这个之后为什么会提示  
  1. #include<stdio.h>
  2. #include<sys/types.h>
  3. #include<dirent.h>
  4. #include<unistd.h>
  5. #include<string.h>
  6. #include<stdlib.h>
  7. int main()
  8. {
  9. DIR * dir;
  10. struct dirent * ptr;
  11. int n=0;
  12. char *namelist[1000];
  13. dir=opendir("/etc");
  14. printf("/etc目录中文件或子目录有:\n");
  15. while((ptr= readdir(dir))!= NULL)
  16.     if(*(ptr->d_name)!='.')
  17.       {
  18.         namelist[n]=ptr->d_name;
  19.         n++;
  20.       }
  21. scandir("/ect",&namelist,0,alphasort);
  22. while (n--);
  23. {
  24.    printf("%s\n",namelist[n]->d_name);
  25.    free(namelist[n]);
  26. }
  27. closedir(dir);
  28. return 0;
  29. }
复制代码
上面是lz自己写的代码     各位大大帮忙看看有什么错误吧

论坛徽章:
0
2 [报告]
发表于 2013-09-13 00:04 |只看该作者
检查一下namelist的定义

论坛徽章:
4
白羊座
日期:2013-09-17 21:59:30技术图书徽章
日期:2013-10-12 22:16:03白羊座
日期:2013-10-14 11:01:40双子座
日期:2013-12-17 18:26:39
3 [报告]
发表于 2013-09-13 00:52 |只看该作者
回复 1# aldslvda
  1. man scandir
复制代码
  1. Feature Test Macro Requirements for glibc (see feature_test_macros(7)):

  2.        scandir(), alphasort(): _BSD_SOURCE || _SVID_SOURCE
复制代码

论坛徽章:
0
4 [报告]
发表于 2013-09-13 11:48 |只看该作者
                     

论坛徽章:
17
处女座
日期:2013-08-27 09:59:352015亚冠之柏太阳神
日期:2015-07-30 10:16:402015亚冠之萨济拖拉机
日期:2015-07-29 18:58:182015年亚洲杯之巴勒斯坦
日期:2015-03-06 17:38:17摩羯座
日期:2014-12-11 21:31:34戌狗
日期:2014-07-20 20:57:32子鼠
日期:2014-05-15 16:25:21亥猪
日期:2014-02-11 17:32:05丑牛
日期:2014-01-20 15:45:51丑牛
日期:2013-10-22 11:12:56双子座
日期:2013-10-18 16:28:17白羊座
日期:2013-10-18 10:50:45
5 [报告]
发表于 2013-09-13 11:51 |只看该作者
回复 1# aldslvda
  1. char *namelist[1000];
  2. namelist既然是个char*数组怎么可能有d_name的成员。
复制代码

论坛徽章:
4
水瓶座
日期:2013-09-06 12:27:30摩羯座
日期:2013-09-28 14:07:46处女座
日期:2013-10-24 14:25:01酉鸡
日期:2014-04-07 11:54:15
6 [报告]
发表于 2013-09-13 12:47 |只看该作者
  1.   int scandir(const char *dir, struct dirent ***namelist,
  2.               int(*filter)(const struct dirent *),
  3.               int(*compar)(const struct dirent **, const struct dirent **));
复制代码
楼主那是弄了个啥.

论坛徽章:
0
7 [报告]
发表于 2013-09-13 15:50 |只看该作者
namelist[n]=ptr->d_name;


printf("%s\n",namelist[n]->d_name);
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP