摘要:
#include <direct.h>#include <time.h>#include <string.h>#include <stdio.h>#include <stdlib.h>char tmpbuf[16];//当日目录void TodayFileName(){ time_t cur; struct tm *mt; cur = time(NULL); mt = localtime(&cur); strftime(tmpbuf, 16,"%Y%m%d", mt);}bool findfile( cha 阅读全文