CFileFind tempFind;
 char tempFileFind[200];
 sprintf(tempFileFind,"%s\\*.*",DirName);
 BOOL IsFinded=(BOOL)tempFind.FindFile(tempFileFind);
 while(IsFinded)
 {
  IsFinded=(BOOL)tempFind.FindNextFile();
  if(!tempFind.IsDots())
  {
   char foundFileName[200];
   strcpy(foundFileName,tempFind.GetFileName().GetBuffer(200));
   if(tempFind.IsDirectory())
   {
    char tempDir[200];
    sprintf(tempDir,"%s\\%s",DirName,foundFileName);
    DeleteDirectory(tempDir);
   }
   else
   {
    char tempFileName[200];
    sprintf(tempFileName,"%s\\%s",DirName,foundFileName);
    DeleteFile(tempFileName);
   }
  }
 }
  tempFind.Close();
 if(!RemoveDirectory(DirName))
 {
  MessageBox("删除目录失败!","警告信息",MB_OK);
  return FALSE;
 }
 return TRUE;

相关文章:

  • 2021-09-26
  • 2021-11-30
  • 2021-06-17
  • 2021-07-31
  • 2022-02-06
  • 2021-12-15
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-03-01
  • 2022-12-23
  • 2022-12-23
  • 2021-04-20
  • 2021-05-26
  • 2021-10-05
  • 2022-12-23
相关资源
相似解决方案