摘要: 本地目录:void CAutoDelete::DoRecursionLocalDelete(CString& localDirectory) { CFileFind finder; CString strFileName; strFileName.Format("%s\\*.*", localDirectory); BOOL found = finder.FindFile(strFileName); while(found) { found = finder.FindNextFile(); if(finder.IsDots()) { ... 阅读全文
posted @ 2014-02-27 16:30 琼' 阅读(566) 评论(0) 推荐(0) 编辑