摘要: #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 阅读全文
posted @ 2007-09-13 19:07 Socrates 阅读(393) 评论(0) 推荐(0) 编辑