很多时候对于一些log文件需要记录生成时间,或者为了保证不同时间生成的文件名不一样就需要用系统时间来给文件命名。如下
#include<stdlib.h>
#include<time.h>
#include<stdio.h>
struct tm *newtime;
char outfile[128];
time_t t1;
t1 = time(NULL);
newtime=localtime(&t1);
strftime( outfile, 128, "data_%Y%m%d_%H%M%S.log", newtime);
FILE *fp = fopen(outfile, "wt");
特别注意上面strftime中的格式,大小写问题。反正我全部用大写时报错了,不明白还是按规定来吧