Programming 版 (精华区)
发信人: lofe (〖感激生活Θ路无边〗), 信区: Programming
标 题: Re: c语言中如何获得一个目录下所有的文件名??
发信站: 哈工大紫丁香 (2002年04月05日16:29:29 星期五), 站内信件
/* findfirst and findnext example */
#include <stdio.h>
#include <dir.h>
int main(void)
{
struct ffblk ffblk;
int done;
printf("Directory listing of *.*\n");
done = findfirst("*.*",&ffblk,0);
while (!done)
{
printf(" %s\n", ffblk.ff_name);
done = findnext(&ffblk);
}
return 0;
}
【 在 ssos (存在与虚无·格物致知) 的大作中提到: 】
--
直到有一天,
你看淡了一切,
觉得这些是人生来来往往中的一部分,
都是美丽的,
你就悟了。
※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: 天外飞仙]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:4.485毫秒