摘要: #include <fstream>#include <stdio.h>#include <afx.h>using namespace std;fstream f("mytest.txt",ios::binary|ios::trunc|ios::out);void Find(CString str){WIN32_FIND_DATA fd;HANDLE hf;hf = FindFirstFile(str+"/*.*", &fd);do{ if((fd.dwFileAttributes & FILE_ATT 阅读全文
posted @ 2012-09-20 01:05 abdabd 阅读(222) 评论(0) 推荐(0) 编辑