[cpp] //清空log文件夾 void CPMAgentManageDlg::DeleteFolder(CString sPath) { CFileFind ff; BOOL bFound; bFound = ff.FindFile(sPath + "\\*.*"); while(bFound) { bFound = ff.FindNextFile(); CString sFilePath = ff.GetFilePath(); if(ff.IsDirectory()) { if(!ff.IsDots()) { DeleteFolder(sFilePath); } } else { if(ff.IsReadOnly()) { SetFileAttributes(sFilePath, FILE_ATTRIBUTE_NORMAL); } DeleteFile(sFilePath); } } ff.Close(); //上面已經把文件夾下面的文件全部刪除了,如果需要把文件夾也刪除掉則加上一下代碼 // SetFileAttributes(sPath, FILE_ATTRIBUTE_NORMAL); //設置文件夾的屬性 // RemoveDirectory(sPath); //刪除文件夾 }