如何在c语言中批量读取文件

如何在c语言中批量读取文件,第1张

应当使用findfirst和findnext函数

#include

<dos.h>

#include

<dir.h>

int

iMatch

struct

ffblk

fFileStru

iMatch

=

findfirst("c:\\test\\*.*",

&fFileStru,

0)

while(!iMatch)

{

...........//找到的文件信息保存在结构fpFileStru里面,这里是处理语句

iMatch

=

findnext(&fFileStru)

}

1、函数名:

mkdir

能:

建立一个目录(文件夹)

法:

int

mkdir(char

*pathname)

2、程序例:

(在win-tc和Dev-c++下运行通过)

#include <stdio.h>

#include <process.h>

#include <dir.h>

int main(void)

{

int status

system("cls")

status = mkdir("book")/*这是在程序所在当前文件夹下创建book*/

(!status) ? (printf("Directory created\n")) :

(printf("Unable to create directory\n"))

system("pause")

system("dir")/*显示创建后当前文件夹下的文件信息*/

system("pause")

status = rmdir("book")/*删除创建的文件夹book*/

(!status) ? (printf("Directory deleted\n")) :

(perror("Unable to delete directory"))

system("pause")

return 0

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11422310.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存