[問題] 如何依序讀取文件檔

作者: Toorch (Torch)   2015-04-30 23:54:02
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Dev C++
問題(Question):
假設我現在有「a1.txt、a2.txt、a3.txt、...a100.txt」
我要將這些文件檔依序讀取並做出一些處理
不知道是否有辦法?
程式碼(Code):(請善用置底文網頁, 記得排版)
#include<stdio.h>
#include<stdlib.h>
int main()
{
int a;
FILE *file;
for(a=1;a<=100;a++){
file = fopen("a%d.txt", a, "w");
//做處理
fclose(file);
}
return 0;
system("PAUSE");
}
補充說明(Supplement):
我知道以上程式碼根本不能編譯
想問是否有辦法實現依序讀取的需求?
作者: chchwy (mat)   2015-04-30 23:56:00
用sprintf()產生檔名
作者: johnjohnlin (嗯?)   2015-05-01 00:15:00
boost filesystem + regex?

Links booklink

Contact Us: admin [ a t ] ucptt.com